angular/packages/compiler-cli/test/compliance/declaration-only/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

21 lines
517 B
Text

load("//tools:defaults2.bzl", "jasmine_test", "ts_project")
ts_project(
name = "test_lib",
testonly = True,
srcs = ["declaration_only_emit_spec.ts"],
deps = [
"//packages/compiler-cli/src/ngtsc/file_system",
"//packages/compiler-cli/test/compliance/test_helpers",
],
)
jasmine_test(
name = "declaration-only",
data = [
":test_lib",
"//packages/compiler-cli/test/compliance/test_cases",
"//packages/core:npm_package",
],
shard_count = 4,
)