I updated my Angular project from V8 to V9. After upgrading successfully and when I run the project it gave me the following warnings: */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.
I followed as answer which I found here. But I still get the warnings. Here is my tsconfig.app.ts
{
"extends": "../tsconfig.json",
"compilerOptions": {
"outDir": "../out-tsc/app",
"types": []
},
"include": [
"main.ts",
"polyfills.ts"
]
}
If someone found the solution, please share.