https://github.com/angular/angular
Raw File
Tip revision: c4553bbed9752afa00ed2f3b66415660d7bf3209 authored by Joey Perrott on 07 October 2020, 21:20:12 UTC
release: cut the v10.1.5 release
Tip revision: c4553bb
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