mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
Adds `noPropertyAccessFromIndexSignature` to the tsconfig of the schematics in order to align it with the rest of the project. PR Close #51969
36 lines
743 B
JSON
36 lines
743 B
JSON
{
|
|
"compilerOptions": {
|
|
"noImplicitReturns": true,
|
|
"noImplicitOverride": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noPropertyAccessFromIndexSignature": true,
|
|
"esModuleInterop": true,
|
|
"strict": true,
|
|
"moduleResolution": "node",
|
|
"target": "es2022",
|
|
"lib": [
|
|
"es2019"
|
|
],
|
|
"types": [
|
|
"jasmine"
|
|
],
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@angular/core": [
|
|
"../"
|
|
],
|
|
"@angular/compiler": [
|
|
"../../compiler"
|
|
],
|
|
"@angular/compiler-cli": [
|
|
"../../compiler-cli"
|
|
],
|
|
"@angular/compiler-cli/private/*": [
|
|
"../../compiler-cli/private/*"
|
|
]
|
|
}
|
|
},
|
|
"bazelOptions": {
|
|
"suppressTsconfigOverrideWarnings": true
|
|
}
|
|
}
|