https://github.com/angular/angular
Raw File
Tip revision: d6d7caa2a8e8cf26f324ee909a5050625e85683e authored by Andrew Kushnir on 12 August 2020, 16:57:20 UTC
release: cut the v10.1.0-next.5 release
Tip revision: d6d7caa
BUILD.bazel
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"],
)
back to top