32b16de8ea
This is mainly to avoid some warning when building the app, such as: ``` WARNING in .../angular/aio/src/environments/environment.archive.ts is part of the TypeScript compilation but it's unused. Add only entry points to the 'files' or 'include' properties in your tsconfig. ``` (Not turning on `fullTemplateTypeCheck` due to lots of errors.) PR Close #32923
15 lines
210 B
JSON
15 lines
210 B
JSON
{
|
|
"extends": "./tsconfig.json",
|
|
"compilerOptions": {
|
|
"outDir": "./out-tsc/app",
|
|
"types": []
|
|
},
|
|
"files": [
|
|
"src/main.ts",
|
|
"src/polyfills.ts"
|
|
],
|
|
"include": [
|
|
"src/**/*.d.ts"
|
|
]
|
|
}
|