angular/packages/private/testing/BUILD.bazel
Joey Perrott cbc258eec8 build: remove ts_project_interop infrastructure (#62908)
Remove the interop macros and final usages

PR Close #62908
2025-07-31 09:12:58 +00:00

23 lines
500 B
Text

load("//tools:defaults2.bzl", "ng_project")
package(default_visibility = [
"//modules/playground:__subpackages__",
"//packages:__subpackages__",
])
exports_files(["package.json"])
ng_project(
name = "testing",
testonly = True,
srcs = glob(
["**/*.ts"],
),
deps = [
"//packages/common",
"//packages/core",
"//packages/core/testing",
"//packages/platform-browser",
"//packages/platform-server:bundled_domino_lib",
],
)