-
Notifications
You must be signed in to change notification settings - Fork 6.8k
/
Copy pathBUILD.bazel
51 lines (44 loc) · 1.48 KB
/
BUILD.bazel
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
load("@bazel_skylib//rules:common_settings.bzl", "bool_flag")
load("@aspect_rules_ts//ts:defs.bzl", rules_js_tsconfig = "ts_config")
package(default_visibility = ["//visibility:public"])
rules_js_tsconfig(
name = "tsconfig",
src = "tsconfig.json",
deps = ["//:node_modules/@types/node"],
)
rules_js_tsconfig(
name = "tsconfig-test",
src = "tsconfig-test.json",
deps = [
":tsconfig",
"//:node_modules/@types/jasmine",
],
)
# Bazel config setting that matches if the partial compilation flag
# for `@angular/bazel` is set to `True`.
config_setting(
name = "partial_compilation_enabled",
flag_values = {
"@npm//@angular/bazel/src:partial_compilation": "True",
},
)
# Command line flag that can be specified to force the JIT compilation to be used for tests
# with partial compilation. By default, tests are processed with the linker at build time.
bool_flag(
name = "force_partial_jit_compilation",
build_setting_default = False,
)
# Config setting that matches if the force JIT compilation build setting is enabled.
# This setting needs to be used in combination of the partial compilation build setting.
config_setting(
name = "force_partial_jit_compilation_enabled",
flag_values = {
"@npm//@angular/bazel/src:partial_compilation": "True",
":force_partial_jit_compilation": "True",
},
)
# Detect if the build is running with stamping enabled.
config_setting(
name = "stamp",
values = {"stamp": "true"},
)