mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
20 lines
387 B
Text
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",
|
|
]),
|
|
)
|