angular/packages/examples/testing/BUILD.bazel
Joey Perrott 47660b7684 build: migrate examples to use rules_js (#61650)
Migrate examples to use ng_project and ts_project for building

PR Close #61650
2025-05-26 11:00:59 +00:00

20 lines
387 B
Text

load("//tools:defaults2.bzl", "ts_project")
package(default_visibility = ["//visibility:public"])
ts_project(
name = "testing_examples",
testonly = True,
srcs = glob(["**/*.ts"]),
deps = [
"//:node_modules/@types/jasmine",
"//:node_modules/@types/node",
],
)
filegroup(
name = "files_for_docgen",
srcs = glob([
"**/*.ts",
]),
)