angular/adev/shared-docs/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

28 lines
524 B
Text

load("//adev/shared-docs:defaults.bzl", "ts_project")
package(default_visibility = ["//visibility:private"])
ts_project(
name = "testing",
srcs = [
"index.ts",
],
visibility = ["//adev/shared-docs:__subpackages__"],
deps = [
":lib",
],
)
ts_project(
name = "lib",
srcs = glob(
["*.ts"],
exclude = [
"index.ts",
],
),
deps = [
"//adev:node_modules/@angular/core",
"//adev:node_modules/@webcontainer/api",
],
)