angular/modules/playground/e2e_test/sourcemap/BUILD.bazel
Paul Gschwendtner 77d2a7c977 build: migrate all modules/... code to ts_project (#61779)
Migrates all `modules/...`  code to `ts_project`.

PR Close #61779
2025-05-30 11:14:58 -04:00

18 lines
567 B
Text

load("//modules/playground/e2e_test:example_test.bzl", "example_test")
example_test(
name = "sourcemap",
srcs = glob(["**/*.ts"]),
data = [
"//modules/playground/src/sourcemap:bundles",
"//modules/playground/src/sourcemap:main.ts",
],
# Source-Map is using WASM and cannot be bundled for specs.
external = ["source-map"],
server = "//modules/playground/src/sourcemap:devserver",
use_legacy_webdriver_types = False,
deps = [
"//:node_modules/@bazel/runfiles",
"//:node_modules/source-map",
],
)