2025-08-25 20:04:19 +00:00
|
|
|
load("//tools:defaults.bzl", "ts_config")
|
2018-10-04 20:14:14 +00:00
|
|
|
|
2021-09-27 23:02:04 +00:00
|
|
|
package(default_visibility = ["//visibility:public"])
|
|
|
|
|
|
2018-10-04 20:14:14 +00:00
|
|
|
ts_config(
|
2025-05-07 06:50:28 +00:00
|
|
|
name = "tsconfig_build",
|
|
|
|
|
src = "tsconfig.json",
|
|
|
|
|
deps = ["//:node_modules/@types/node"],
|
|
|
|
|
)
|
|
|
|
|
|
2025-07-16 19:57:43 +00:00
|
|
|
ts_config(
|
2025-05-07 06:50:28 +00:00
|
|
|
name = "tsconfig_test",
|
|
|
|
|
src = "tsconfig-test.json",
|
|
|
|
|
deps = [
|
|
|
|
|
":tsconfig_build",
|
|
|
|
|
"//:node_modules/@types/jasmine",
|
|
|
|
|
],
|
|
|
|
|
)
|
|
|
|
|
|
2018-08-02 04:02:36 +00:00
|
|
|
platform(
|
|
|
|
|
name = "rbe_ubuntu1604-angular",
|
2019-03-15 17:45:20 +00:00
|
|
|
parents = ["@rbe_ubuntu1604_angular//config:platform"],
|
2018-08-02 04:02:36 +00:00
|
|
|
remote_execution_properties = """
|
2019-03-15 17:45:20 +00:00
|
|
|
{PARENT_REMOTE_EXECUTION_PROPERTIES}
|
2018-08-02 04:02:36 +00:00
|
|
|
properties: {
|
|
|
|
|
name: "dockerAddCapabilities"
|
|
|
|
|
value: "SYS_ADMIN"
|
|
|
|
|
}
|
2020-02-13 21:07:25 +00:00
|
|
|
properties: {
|
|
|
|
|
name: "dockerNetwork"
|
|
|
|
|
value: "standard"
|
|
|
|
|
}
|
2019-06-26 19:13:50 +00:00
|
|
|
properties: {
|
|
|
|
|
name: "Pool"
|
|
|
|
|
value: "default"
|
|
|
|
|
}
|
2018-08-02 04:02:36 +00:00
|
|
|
""",
|
|
|
|
|
)
|