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:
parent
e76cf8c775
commit
410ccacf38
4
.bazelrc
4
.bazelrc
|
@ -10,8 +10,10 @@ build:angular-team --remote_http_cache=https://storage.googleapis.com/angular-te
|
|||
|
||||
# Make compilation fast, by keeping a few copies of the compilers
|
||||
# running as daemons, and cache SourceFile AST's to reduce parse time.
|
||||
build --strategy=TypeScriptCompile=worker
|
||||
build --strategy=AngularTemplateCompile=worker
|
||||
# TODO(alexeagle): re-enable after fixing worker instability with rxjs typings
|
||||
# build --strategy=TypeScriptCompile=worker
|
||||
build --strategy=TypeScriptCompile=standalone
|
||||
|
||||
# Enable debugging tests with --config=debug
|
||||
test:debug --test_arg=--node_options=--inspect-brk --test_output=streamed --test_strategy=exclusive --test_timeout=9999 --nocache_test_results
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue