mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
2fcafb65c5
Use defaults.bzl for the common macros PR Close #63383
21 lines
386 B
Python
21 lines
386 B
Python
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",
|
|
]),
|
|
)
|