https://github.com/angular/angular
Raw File
Tip revision: 05657cfde4514671570a674a4be83989729e2740 authored by Jessica Janiuk on 19 July 2023, 19:30:17 UTC
release: cut the v16.2.0-next.3 release
Tip revision: 05657cf
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