angular/aio/tools/examples/shared/tsconfig.json
Kristiyan Kostadinov e1b27b01a5 build: disable TS version checks on AIO (#51792)
Disables the checks for the version of TS in AIO to unblock the TS deprecation.

PR Close #51792
2023-09-19 12:04:09 +02:00

23 lines
582 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"
],
"angularCompilerOptions": {
"disableTypeScriptVersionCheck": true
}
}