Follow-up to #30993 where we build all Angular packages with the TypeScript `--strict` flag. The flag improves overall code health and also helps us catch issues easier. PR Close #31967
20 lines
484 B
JSON
20 lines
484 B
JSON
{
|
|
"compilerOptions": {
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"strict": true,
|
|
"lib": ["es2015"],
|
|
"types": [],
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@angular/compiler": ["../../compiler"],
|
|
"@angular/compiler/*": ["../../compiler/*"],
|
|
"@angular/compiler-cli": ["../../compiler-cli"],
|
|
"@angular/compiler-cli/*": ["../../compiler-cli/*"]
|
|
}
|
|
},
|
|
"bazelOptions": {
|
|
"suppressTsconfigOverrideWarnings": true
|
|
}
|
|
}
|