21 lines
643 B
Python
21 lines
643 B
Python
load("//tools:defaults.bzl", "ts_library")
|
|
|
|
ts_library(
|
|
name = "module-with-providers",
|
|
srcs = glob(["**/*.ts"]),
|
|
tsconfig = "//packages/core/schematics:tsconfig.json",
|
|
visibility = [
|
|
"//packages/core/schematics:__pkg__",
|
|
"//packages/core/schematics/test:__pkg__",
|
|
],
|
|
deps = [
|
|
"//packages/compiler-cli/src/ngtsc/imports",
|
|
"//packages/compiler-cli/src/ngtsc/partial_evaluator",
|
|
"//packages/compiler-cli/src/ngtsc/reflection",
|
|
"//packages/core/schematics/utils",
|
|
"@npm//@angular-devkit/schematics",
|
|
"@npm//@types/node",
|
|
"@npm//typescript",
|
|
],
|
|
)
|