https://github.com/angular/angular
Raw File
Tip revision: f8e17c83e971caf88bd422daee14da8d9c81c178 authored by Alex Rickabaugh on 16 June 2021, 23:44:25 UTC
release: cut the v12.1.0-next.6 release (#42587)
Tip revision: f8e17c8
BUILD.bazel
load("//tools:defaults.bzl", "ng_module")

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

exports_files(["package.json"])

ng_module(
    name = "testing",
    srcs = glob(
        ["**/*.ts"],
        exclude = ["testing.ts"],
    ),
    # compiler package is built using ts_library which doesn't support bundling yet.
    bundle_dts = False,
    deps = [
        "//packages:types",
        "//packages/compiler",
        "//packages/core",
        "@npm//@types/node",
    ],
)
back to top