Since updating to Angular 9, I've been encountering errors in the TypeScript error console. Strangely, no errors are shown when I run 'tsc' in the command line.
https://i.sstatic.net/3mNGp.png
This is my tsconfig file:
{
"compileOnSave": false,
"angularCompilerOptions": {
"fullTemplateTypeCheck": true,
"preserveWhitespaces": true
},
"compilerOptions": {
"baseUrl": "./",
"outDir": "./dist/out-tsc",
"sourceMap": true,
"declaration": false,
...
}
Additionally, here's my tsconfig.app.json file:
{
"extends": "./tsconfig.json",
"compilerOptions": {
"outDir": "./out-tsc/app",
"types": [],
"module": "esnext",
...
}
Any thoughts or suggestions on how to resolve this issue would be greatly appreciated!
Thank you,
Sean