https://github.com/angular/angular
Raw File
Tip revision: 61f63cf6fd1779d08137d01074a56a723d4a511d authored by Andrew Kushnir on 12 April 2023, 19:11:17 UTC
release: cut the v16.0.0-rc.0 release
Tip revision: 61f63cf
BUILD.bazel
load("//tools:defaults.bzl", "ng_module")

package(default_visibility = ["//visibility:public"])

exports_files([
    "package.json",
    "schema.json",
])

filegroup(
    name = "sources",
    srcs = glob([
        "*.ts",
        "src/**/*.ts",
    ]),
)

ng_module(
    name = "config",
    srcs = [":sources"],
    deps = ["//packages/core"],
)
back to top