angular/packages/core/schematics/tsconfig.json
Kristiyan Kostadinov 8e7feefb5b build: align schematics tsconfig with rest of the project (#51969)
Adds `noPropertyAccessFromIndexSignature` to the tsconfig of the schematics in order to align it with the rest of the project.

PR Close #51969
2023-10-04 07:28:41 -07:00

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
}
}