Files
Joey Perrott 875ea30d6b build: remove ts_project_interop infrastructure (#62909)
Remove the interop macros and final usages

PR Close #62909
2025-07-31 09:14:25 +00:00

23 lines
423 B
Python

load("//tools:defaults2.bzl", "angular_jasmine_test", "ts_project")
ts_project(
name = "test_lib",
testonly = True,
srcs = glob(
["**/*.ts"],
),
deps = [
"//packages:types",
"//packages/compiler",
"//packages/compiler/test/expression_parser/utils",
"//packages/core",
],
)
angular_jasmine_test(
name = "test",
data = [
":test_lib",
],
)