70341bcfed
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
21 lines
475 B
JSON
21 lines
475 B
JSON
// this tsconfig is used to give intellisense to
|
|
// all the examples in this folder
|
|
{
|
|
"compilerOptions": {
|
|
"target": "es6",
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"sourceMap": true,
|
|
"experimentalDecorators": true,
|
|
"lib": ["es2015", "dom"],
|
|
"noImplicitAny": true,
|
|
"suppressImplicitAnyIndexErrors": true,
|
|
"typeRoots": [
|
|
"../../tools/examples/shared/node_modules/@types"
|
|
]
|
|
},
|
|
"include": [
|
|
"*/e2e-spec.ts"
|
|
]
|
|
}
|