This commit updates the docs examples to Angular v12.1.3. In addition to updating the dependencies versions, it also updates the projects' structure and configs to more closely match what a new v12 CLI app would look like. See, also, the [diff][1] between a basic v11.2.11 CLI app and a v12.1.3 one. [1]: https://github.com/cexbrayat/angular-cli-diff/compare/11.2.11..12.1.3 PR Close #42949
21 lines
505 B
JSON
21 lines
505 B
JSON
// this tsconfig is used for protractor tests
|
|
// see boilerplate/tsconfig.json for the tsconfig used in examples
|
|
{
|
|
"compilerOptions": {
|
|
"target": "es2017",
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"sourceMap": true,
|
|
"experimentalDecorators": true,
|
|
"lib": ["es2018", "dom"],
|
|
"noImplicitAny": true,
|
|
"suppressImplicitAnyIndexErrors": true,
|
|
"typeRoots": [
|
|
"node_modules/@types"
|
|
]
|
|
},
|
|
"include": [
|
|
"../../../content/examples/*/e2e-spec.ts"
|
|
]
|
|
}
|