https://github.com/angular/angular
Raw File
Tip revision: 230b98d4ddffee4df25f62ff3c9ac39a2329abf6 authored by Tobias Bosch on 19 October 2017, 00:22:45 UTC
docs: add changelog for 5.0.0-rc.3
Tip revision: 230b98d
.bazelrc
# 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

# Don't create bazel-* symlinks in the WORKSPACE directory.
# These require .gitignore and may scare users.
# Also, it's a workaround for https://github.com/bazelbuild/rules_typescript/issues/12
# which affects the common case of having `tsconfig.json` in the WORKSPACE directory.
#
# Instead, you should run `bazel info bazel-bin` to find out where the outputs went.
build --symlink_prefix=/

# Performance: avoid stat'ing input files
build --watchfs

# Don't print all the .d.ts output locations after builds
build --show_result=0
back to top