angular/packages/examples/testing/BUILD.bazel

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
386 B
Text
Raw Normal View History

load("//tools:defaults.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",
]),
)