mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
15 lines
348 B
Text
15 lines
348 B
Text
load("//tools:defaults.bzl", "ts_project")
|
|
|
|
package(default_visibility = ["//visibility:public"])
|
|
|
|
ts_project(
|
|
name = "testing",
|
|
testonly = True,
|
|
srcs = glob(["**/*.ts"]),
|
|
deps = [
|
|
"//:node_modules/rxjs",
|
|
"//:node_modules/typescript",
|
|
"//packages:types",
|
|
"//packages/service-worker/worker",
|
|
],
|
|
)
|