mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
Use pnpm instead of yarn as the package manager and interaction tool for the repo PR Close #62924
38 lines
868 B
Text
38 lines
868 B
Text
load("//tools:defaults2.bzl", "ts_config")
|
|
|
|
package(default_visibility = ["//visibility:public"])
|
|
|
|
ts_config(
|
|
name = "tsconfig_build",
|
|
src = "tsconfig.json",
|
|
deps = ["//:node_modules/@types/node"],
|
|
)
|
|
|
|
ts_config(
|
|
name = "tsconfig_test",
|
|
src = "tsconfig-test.json",
|
|
deps = [
|
|
":tsconfig_build",
|
|
"//:node_modules/@types/jasmine",
|
|
],
|
|
)
|
|
|
|
platform(
|
|
name = "rbe_ubuntu1604-angular",
|
|
parents = ["@rbe_ubuntu1604_angular//config:platform"],
|
|
remote_execution_properties = """
|
|
{PARENT_REMOTE_EXECUTION_PROPERTIES}
|
|
properties: {
|
|
name: "dockerAddCapabilities"
|
|
value: "SYS_ADMIN"
|
|
}
|
|
properties: {
|
|
name: "dockerNetwork"
|
|
value: "standard"
|
|
}
|
|
properties: {
|
|
name: "Pool"
|
|
value: "default"
|
|
}
|
|
""",
|
|
)
|