Files
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

16 lines
270 B
Python

load("//adev/shared-docs:defaults.bzl", "ts_project")
package(default_visibility = ["//visibility:public"])
ts_project(
name = "shared",
srcs = glob(
[
"*.mts",
],
),
deps = [
"//:node_modules/@types/node",
],
)