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
25 lines
548 B
Text
25 lines
548 B
Text
load("//adev/shared-docs:defaults.bzl", "ts_project")
|
|
|
|
package(default_visibility = ["//visibility:private"])
|
|
|
|
ts_project(
|
|
name = "utils",
|
|
srcs = glob(
|
|
[
|
|
"**/*.ts",
|
|
],
|
|
exclude = [
|
|
"**/*.spec.ts",
|
|
],
|
|
),
|
|
interop_deps = [
|
|
"//adev/shared-docs/interfaces",
|
|
"//adev/shared-docs/providers",
|
|
"//packages/core",
|
|
"//packages/router",
|
|
],
|
|
visibility = ["//adev/shared-docs:__subpackages__"],
|
|
deps = [
|
|
"//:node_modules/fflate",
|
|
],
|
|
)
|