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

30 lines
536 B
Python

load("//tools:defaults2.bzl", "angular_jasmine_test", "ng_web_test_suite", "ts_project")
package(default_visibility = ["//visibility:private"])
ts_project(
name = "compiler_lib",
testonly = True,
srcs = glob(
["**/*.ts"],
),
deps = [
"//packages/core/src/compiler",
"//packages/core/src/util",
],
)
angular_jasmine_test(
name = "compiler",
data = [
":compiler_lib",
],
)
ng_web_test_suite(
name = "compiler_web",
deps = [
":compiler_lib",
],
)