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

PR Close #61344
2025-05-20 14:26:04 +00:00

41 lines
834 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/fast-glob",
"//:node_modules/jsdom",
"//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",
])