angular/packages/core/schematics/tsconfig.json
Andrew Scott fdfcef5a0a build: enable useUnknownInCatchVariables (#44679)
This unblocks the internal migration to turn the option on in g3.

PR Close #44679
2022-02-01 18:17:29 +00:00

35 lines
No EOL
694 B
JSON

{
"compilerOptions": {
"noImplicitReturns": true,
"noImplicitOverride": true,
"noFallthroughCasesInSwitch": true,
"esModuleInterop": true,
"strict": true,
"moduleResolution": "node",
"target": "es2019",
"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
}
}