mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
This script was used back when dev-infra code was part of the Angular framework repository. The script is now unused and can be deleted. PR Close #46798
34 lines
765 B
Text
34 lines
765 B
Text
load("//tools:defaults.bzl", "ts_config")
|
|
|
|
package(default_visibility = ["//visibility:public"])
|
|
|
|
exports_files([
|
|
"tsconfig.json",
|
|
"postinstall-patches.js",
|
|
])
|
|
|
|
ts_config(
|
|
name = "tsconfig-test",
|
|
src = "tsconfig-test.json",
|
|
deps = ["tsconfig.json"],
|
|
)
|
|
|
|
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"
|
|
}
|
|
""",
|
|
)
|