После обновления до Angular 9 я продолжаю получать ошибки в консоли ошибок TypeScript ... но при запуске ts c в командной строке версии пакета ошибок не возникает.
![enter image description here](https://i.stack.imgur.com/3mNGp.png)
мой tsconfig
{
"compileOnSave": false,
"angularCompilerOptions": {
"fullTemplateTypeCheck": true,
"preserveWhitespaces": true
},
"compilerOptions": {
"baseUrl": "./",
"outDir": "./dist/out-tsc",
"sourceMap": true,
"declaration": false,
"module": "esnext",
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "es2015",
"paths": {
"sax": [
"node_modules/sax"
],
"timers": [
"node_modules/timers"
],
"stream": [
"node_modules/stream"
]
},
"typeRoots": [
"node_modules/@types"
],
"lib": [
"es2018",
"dom"
]
}
}
и мой tsconfig.app. json
{
"extends": "./tsconfig.json",
"compilerOptions": {
"outDir": "./out-tsc/app",
"types": [],
"module": "esnext",
"moduleResolution": "node"
},
"include": [
"src/**/*.ts"
],
"exclude": [
"src/test.ts",
"tmp/**/",
"tmp/**/*.ts",
"src/**/*.spec.ts"
]
}
есть идеи?
Спасибо
Шон