This commit updates the docs examples to Angular v11.2.10. See the [diff between 11.0.1 and 11.2.10 (FW) and 11.2.9 (CLI)][1]. The changes are fairly trivial including: - Removal of `emitDecoratorMetadata` from tsconfig.json files, where no JIT compilation is required. - Setting `enableI18nLegacyMessageIdFormat` to `false` for CLI based applications - the i18n example was already migrated away from legacy message IDs. [1]: https://github.com/cexbrayat/angular-cli-diff/compare/11.2.9..11.0.1 PR Close #41689
28 lines
519 B
JSON
28 lines
519 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es5",
|
|
"module": "es2015",
|
|
"moduleResolution": "node",
|
|
"sourceMap": true,
|
|
"experimentalDecorators": true,
|
|
"lib": [
|
|
"es2015",
|
|
"dom"
|
|
],
|
|
"removeComments": false,
|
|
"noImplicitAny": true,
|
|
"skipLibCheck": true,
|
|
"suppressImplicitAnyIndexErrors": true,
|
|
"typeRoots": [
|
|
"node_modules/@types"
|
|
]
|
|
},
|
|
"files": [
|
|
"app/app.module.ts",
|
|
"app/main.ts"
|
|
],
|
|
"angularCompilerOptions": {
|
|
"skipMetadataEmit": true
|
|
}
|
|
}
|