mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
Move ts_project and ng_project into a macro for adev/ instead of providing a custom tsconfig on every target PR Close #61319
41 lines
835 B
Text
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",
|
|
])
|