angular/adev/shared-docs/pipeline/examples/stackblitz/BUILD.bazel
Joey Perrott ef0f1a4ca8 build: move ts_project and ng_project for adev into a macro (#61319)
Move ts_project and ng_project into a macro for adev/ instead of providing a custom
tsconfig on every target

PR Close #61319
2025-05-20 08:48:29 +00:00

41 lines
835 B
Text

load("//adev/shared-docs:defaults.bzl", "ts_project")
package(default_visibility = ["//visibility:public"])
ts_project(
name = "stackblitz",
srcs = glob(
[
"*.mts",
],
exclude = [
"index.mts",
],
),
deps = [
"//:node_modules/@types/jsdom",
"//:node_modules/@types/node",
"//:node_modules/jsdom",
"//:node_modules/tinyglobby",
"//adev/shared-docs/pipeline/examples/shared:shared_rjs",
"//adev/shared-docs/pipeline/guides:guides_rjs",
],
)
ts_project(
name = "index",
srcs = [
"index.mts",
],
visibility = [
"//adev/shared-docs:__subpackages__",
],
deps = [
":stackblitz_rjs",
"//:node_modules/@types/node",
],
)
exports_files([
"index.mts",
])