https://github.com/angular/angular
Raw File
Tip revision: cbba7152fd2a533277b88aca98a50339d098d9f7 authored by Jessica Janiuk on 17 March 2021, 17:43:01 UTC
release: cut the v11.2.6 release (#41247)
Tip revision: cbba715
BUILD.bazel
load("//tools:defaults.bzl", "ng_module")

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

exports_files(["package.json"])

ng_module(
    name = "testing",
    srcs = glob(
        ["**/*.ts"],
    ),
    deps = [
        "//packages:types",
        "//packages/compiler",
        "//packages/core",
        "//packages/localize",
        "//packages/zone.js/lib:zone_d_ts",
        "@npm//@types/jasmine",
    ],
)
back to top