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
40 lines
1.2 KiB
JSON
40 lines
1.2 KiB
JSON
// #docplaster ...
|
|
/* To learn more about this file see: https://angular.io/guide/typescript-configuration. */
|
|
// #docregion angular-compiler-options
|
|
{
|
|
"compileOnSave": false,
|
|
"compilerOptions": {
|
|
"baseUrl": "./",
|
|
// #enddocregion angular-compiler-options
|
|
"outDir": "./dist/out-tsc",
|
|
"forceConsistentCasingInFileNames": true,
|
|
"strict": true,
|
|
"noImplicitOverride": true,
|
|
"noPropertyAccessFromIndexSignature": true,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"sourceMap": true,
|
|
"declaration": false,
|
|
"downlevelIteration": true,
|
|
"experimentalDecorators": true,
|
|
"moduleResolution": "node",
|
|
"importHelpers": true,
|
|
"target": "es2020",
|
|
"module": "es2020",
|
|
"lib": [
|
|
"es2020",
|
|
"dom"
|
|
]
|
|
// #docregion angular-compiler-options
|
|
},
|
|
"angularCompilerOptions": {
|
|
"enableI18nLegacyMessageIdFormat": false,
|
|
"strictInjectionParameters": true,
|
|
// #enddocregion angular-compiler-options
|
|
"strictInputAccessModifiers": true,
|
|
"strictTemplates": true,
|
|
// #docregion angular-compiler-options
|
|
"disableTypeScriptVersionCheck": true
|
|
}
|
|
}
|
|
// #enddocregion angular-compiler-options
|