mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
This helps ensure we use the same tsconfig.json file for all compilations. Next steps are to make it the same tsconfig.json file used by the editor PR Close #20964
12 lines
246 B
Text
12 lines
246 B
Text
load("//tools:defaults.bzl", "ts_library")
|
|
|
|
ts_library(
|
|
name = "test",
|
|
testonly = 1,
|
|
srcs = glob(["test/**/*.ts"]),
|
|
deps = [
|
|
"//packages:types",
|
|
"//packages/animations",
|
|
"//packages/core/testing",
|
|
],
|
|
)
|