Angular 9 ngtypecheck - PullRequest
       7

Angular 9 ngtypecheck

5 голосов
/ 17 июня 2020

После обновления до angular 9 я получаю предупреждения:

\src\main.ngtypecheck.ts is part of the TypeScript compilation but it's unused.
Add only entry points to the 'files' or 'include' properties in your tsconfig.
\src\polyfills.ngtypecheck.ts is part of the TypeScript compilation but it's unused.
Add only entry points to the 'files' or 'include' properties in your tsconfig.

my tsconfig.app. json:

{
  "extends": "../tsconfig.json",
  "compilerOptions": {
    "outDir": "../out-tsc/app",
    "types": []
  },
  "files": ["main.ts", "polyfills.ts"],
  "exclude": [
    "test.ts",
    "**/*.spec.ts"
  ]
}

Как устранить эти предупреждения?

1 Ответ

4 голосов
/ 25 июня 2020

@ Felix Если вы используете пакет @ angular -builders / custom-webpack, предупреждения возникают из-за зависимости @ ngtools / webpack v9

Проблема с GitHub уже открыта

...