mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
Update the docs examples to the latest prerelease versions of Angular CLI and framework (v14.0.0-rc.0). Also update the example apps to more closely align with new CLI apps. See also the [diff][1] between a basic v13.0.0-rc.3 CLI app and a v14.0.0-rc.0 one. [1]: https://github.com/cexbrayat/angular-cli-diff/compare/13.0.0-rc.3...14.0.0-rc.0 PR Close #45997
39 lines
1.1 KiB
JSON
39 lines
1.1 KiB
JSON
// #docplaster ...
|
|
/* To learn more about this file see: https://angular.io/config/tsconfig. */
|
|
// #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
|
|
}
|
|
}
|
|
// #enddocregion angular-compiler-options
|