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
23 lines
684 B
JSON
23 lines
684 B
JSON
// this tsconfig is used for protractor tests
|
|
// see boilerplate/tsconfig.json for the tsconfig used in examples
|
|
{
|
|
"compilerOptions": {
|
|
"target": "es6",
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"sourceMap": true,
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"lib": ["es2015", "dom"],
|
|
"noImplicitAny": true,
|
|
"suppressImplicitAnyIndexErrors": true,
|
|
"typeRoots": [
|
|
"node_modules/@types"
|
|
],
|
|
// TODO(FW-2145): turn lib checks back on after fixing in-memory-api and investigating impact of ModuleWithProviders
|
|
"skipLibCheck": true
|
|
},
|
|
"include": [
|
|
"../../../content/examples/*/e2e-spec.ts"
|
|
]
|
|
}
|