Paul Gschwendtner e4d5102b17 build: ensure schematics are built with typescript strict flag (#31967)
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
2019-08-13 11:39:00 -07:00

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