https://github.com/angular/angular
Raw File
Tip revision: a10fe450d93eacbe45ba0a1892d0bbe63fc81b51 authored by Zach Arend on 03 March 2021, 23:09:28 UTC
release: cut the v12.0.0-next.3 release
Tip revision: a10fe45
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