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
522 B
Python

load("//tools:defaults2.bzl", "angular_jasmine_test", "ng_project", "ng_web_test_suite")
package(default_visibility = ["//visibility:private"])
ng_project(
name = "resource_lib",
testonly = True,
srcs = glob(
["**/*.ts"],
),
deps = [
"//packages/core",
"//packages/core/testing",
],
)
angular_jasmine_test(
name = "resource",
data = [
":resource_lib",
],
)
ng_web_test_suite(
name = "resource_web",
deps = [
":resource_lib",
],
)