build: disable tsc_wrapped workers (#29197)

Angular devs are hitting a bug with typings forcing them to run "bazel shutdown"

PR Close #29197
This commit is contained in:
Alex Eagle
2019-03-08 16:49:53 -08:00
committed by Matias Niemelä
parent e76cf8c775
commit 410ccacf38
2 changed files with 4 additions and 2 deletions

View File

@ -227,7 +227,7 @@ function updateTsconfigJson(): Rule {
if (!host.exists(tsconfigPath)) {
return host;
}
const contentRaw = host.read(tsconfigPath).toString();
const contentRaw = host.read(tsconfigPath) !.toString();
if (!contentRaw) {
return host;
}