mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
In v9, we deprecated the use of ModuleWithProviders without a generic. In v10, we will be requiring the generic when using ModuleWithProviders. You can read more about the reasoning behind this change in the migration guide: http://v9.angular.io/guide/migration-module-with-providers PR Close #36892
29 lines
714 B
JSON
29 lines
714 B
JSON
{
|
|
"compileOnSave": false,
|
|
"compilerOptions": {
|
|
"baseUrl": "./",
|
|
"outDir": "./dist/out-tsc",
|
|
"sourceMap": true,
|
|
"declaration": false,
|
|
"downlevelIteration": true,
|
|
"experimentalDecorators": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"importHelpers": true,
|
|
"target": "es2015",
|
|
"typeRoots": [
|
|
"node_modules/@types"
|
|
],
|
|
"lib": [
|
|
"es2018",
|
|
"dom"
|
|
],
|
|
// TODO(FW-2145): turn lib checks back on after fixing in-memory-api and investigating impact of ModuleWithProviders
|
|
"skipLibCheck": true
|
|
},
|
|
"angularCompilerOptions": {
|
|
"enableIvy": false,
|
|
"fullTemplateTypeCheck": true,
|
|
"strictInjectionParameters": true
|
|
}
|
|
}
|