mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
Disables the checks for the version of TS in AIO to unblock the TS deprecation. PR Close #51792
28 lines
587 B
JSON
28 lines
587 B
JSON
{
|
|
"extends": "../../tsconfig.json",
|
|
"compilerOptions": {
|
|
"outDir": "../../out-tsc/lib",
|
|
"target": "es2015",
|
|
"module": "es2015",
|
|
"moduleResolution": "node",
|
|
"declaration": true,
|
|
"sourceMap": true,
|
|
"inlineSources": true,
|
|
"experimentalDecorators": true,
|
|
"importHelpers": true,
|
|
"types": [],
|
|
"lib": [
|
|
"dom",
|
|
"es2018"
|
|
]
|
|
},
|
|
"angularCompilerOptions": {
|
|
"disableTypeScriptVersionCheck": true,
|
|
"strictTemplates": true,
|
|
"strictInjectionParameters": true
|
|
},
|
|
"exclude": [
|
|
"src/test.ts",
|
|
"**/*.spec.ts"
|
|
]
|
|
}
|