angular/packages/examples/testing/BUILD.bazel
Derek Cormier 431c562815 build(bazel): add bazel targets for aio doc generation
This is an incremental step to produce dgeni output with bazel. The
generated outputs are not yet used by other targets.
2022-11-22 13:51:16 -07:00

20 lines
388 B
Text

load("//tools:defaults.bzl", "ts_library")
package(default_visibility = ["//visibility:public"])
ts_library(
name = "testing_examples",
srcs = glob(["**/*.ts"]),
tsconfig = "//packages:tsconfig-test",
deps = [
"@npm//@types/jasmine",
"@npm//@types/node",
],
)
filegroup(
name = "files_for_docgen",
srcs = glob([
"**/*.ts",
]),
)