https://github.com/angular/angular
Raw File
Tip revision: cbfe6284a2cb4a0e5f8d88f833de7341d478250d authored by Jessica Janiuk on 13 April 2022, 18:27:48 UTC
release: cut the v13.3.3 release (#45614)
Tip revision: cbfe628
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