https://github.com/angular/angular
Raw File
Tip revision: 8bf3b53a1d6d04de85545807d4eebbb3480343ae authored by Jessica Janiuk on 02 March 2022, 18:18:07 UTC
release: cut the v13.2.5 release (#45241)
Tip revision: 8bf3b53
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