This reverts commit a38433f36b036cb2956066cb6a5843bef73a4de1. Reason: this causes failures in g3 with i18n extraction. See #31267. PR Close #31267
17 lines
459 B
Python
17 lines
459 B
Python
load("//tools:defaults.bzl", "ts_library")
|
|
|
|
ts_library(
|
|
name = "utils",
|
|
srcs = glob(["**/*.ts"]),
|
|
tsconfig = "//packages/core/schematics:tsconfig.json",
|
|
visibility = ["//packages/core/schematics:__subpackages__"],
|
|
deps = [
|
|
"//packages/compiler",
|
|
"@npm//@angular-devkit/core",
|
|
"@npm//@angular-devkit/schematics",
|
|
"@npm//@schematics/angular",
|
|
"@npm//@types/node",
|
|
"@npm//typescript",
|
|
],
|
|
)
|