https://github.com/angular/angular
Raw File
Tip revision: 600a8cd59a47c58a9169bd717bd9f036a49bae84 authored by Alex Rickabaugh on 22 February 2024, 01:49:33 UTC
release: cut the v17.2.2 release
Tip revision: 600a8cd
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