9a1959269f
This is now turned on by default in the ng_module macro PR Close #29128
18 lines
288 B
Python
18 lines
288 B
Python
load("//tools:defaults.bzl", "ng_module")
|
|
|
|
package(default_visibility = ["//visibility:public"])
|
|
|
|
exports_files([
|
|
"package.json",
|
|
"schema.json",
|
|
])
|
|
|
|
ng_module(
|
|
name = "config",
|
|
srcs = glob([
|
|
"*.ts",
|
|
"src/**/*.ts",
|
|
]),
|
|
deps = ["//packages/core"],
|
|
)
|