
We now add the 'main', 'module', 'es2015', and 'typings' properties, pointing to where the packaging tool lays them out. Fixes #22416 PR Close #22499
12 lines
251 B
Python
12 lines
251 B
Python
package(default_visibility = ["//packages/bazel/test:__subpackages__"])
|
|
|
|
load("//packages/bazel:index.bzl", "ng_module")
|
|
|
|
exports_files(["package.json"])
|
|
|
|
ng_module(
|
|
name = "secondary",
|
|
srcs = glob(["*.ts"]),
|
|
deps = ["//packages/core"],
|
|
)
|