https://github.com/angular/angular
Raw File
Tip revision: c2edcce4369e3573d9863ae93ed737bf9f179845 authored by Jessica Janiuk on 08 March 2023, 18:52:19 UTC
release: cut the v16.0.0-next.2 release
Tip revision: c2edcce
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