13 lines
332 B
Python
13 lines
332 B
Python
|
load("//tools:defaults.bzl", "ts_library")
|
||
|
|
||
|
ts_library(
|
||
|
name = "utils",
|
||
|
srcs = glob(
|
||
|
["**/*.ts"],
|
||
|
exclude = ["**/*_spec.ts"],
|
||
|
),
|
||
|
tsconfig = "//packages/core/schematics:tsconfig.json",
|
||
|
visibility = ["//packages/core/schematics:__subpackages__"],
|
||
|
deps = ["@npm//@angular-devkit/schematics"],
|
||
|
)
|