angular/packages/examples/upgrade/BUILD.bazel
Joey Perrott 2fcafb65c5 build: rename defaults2.bzl to defaults.bzl (#63383)
Use defaults.bzl for the common macros

PR Close #63383
2025-08-25 15:45:01 -07:00

29 lines
589 B
Text

load("//tools:defaults.bzl", "ts_config")
package(default_visibility = ["//visibility:public"])
exports_files([
"tsconfig.json",
"start-server.js",
"index.html",
])
ts_config(
name = "tsconfig_build",
src = "tsconfig.json",
deps = [
"//:node_modules/@types/angular",
"//:node_modules/@types/jasmine",
"//:node_modules/tslib",
],
)
ts_config(
name = "tsconfig_e2e",
src = "tsconfig-e2e.json",
deps = [
":tsconfig_build",
"//:node_modules/@types/jasminewd2",
"//:node_modules/@types/node",
],
)