https://github.com/angular/angular
Raw File
Tip revision: cbfe6284a2cb4a0e5f8d88f833de7341d478250d authored by Jessica Janiuk on 13 April 2022, 18:27:48 UTC
release: cut the v13.3.3 release (#45614)
Tip revision: cbfe628
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",
        "@npm//base64-js",
        "@npm//source-map",
    ],
)
back to top