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
32 lines
682 B
JSON
32 lines
682 B
JSON
{
|
|
"extends": "./tsconfig.json",
|
|
"compilerOptions": {
|
|
"outDir": "../out-tsc/app",
|
|
"types": [],
|
|
// TODO(FW-2145): turn lib checks back on after fixing in-memory-api and investigating impact of ModuleWithProviders
|
|
"skipLibCheck": true
|
|
},
|
|
"files": [
|
|
"src/main.ts",
|
|
"src/polyfills.ts"
|
|
],
|
|
"include": [
|
|
"src/**/*.d.ts"
|
|
],
|
|
"exclude": [
|
|
"src/test.ts",
|
|
"src/**/*.spec.ts",
|
|
"src/**/*-specs.ts",
|
|
"src/**/*.avoid.ts",
|
|
"src/**/*.0.ts",
|
|
"src/**/*.1.ts",
|
|
"src/**/*.1b.ts",
|
|
"src/**/*.2.ts",
|
|
"src/**/*.3.ts",
|
|
"src/**/*.4.ts",
|
|
"src/**/*.5.ts",
|
|
"src/**/*.6.ts",
|
|
"src/**/*.7.ts",
|
|
"src/**/testing"
|
|
]
|
|
}
|