mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
Define the tsconfig for service worker instead of manually including the tsconfig on each target PR Close #61341
18 lines
419 B
Text
18 lines
419 B
Text
load("//tools:defaults2.bzl", "ts_project")
|
|
|
|
package(default_visibility = ["//visibility:public"])
|
|
|
|
ts_project(
|
|
name = "testing",
|
|
testonly = True,
|
|
srcs = glob(["**/*.ts"]),
|
|
interop_deps = [
|
|
"//packages/core",
|
|
],
|
|
deps = [
|
|
"//:node_modules/rxjs",
|
|
"//:node_modules/typescript",
|
|
"//packages:types_rjs",
|
|
"//packages/service-worker/worker:worker_rjs",
|
|
],
|
|
)
|