https://github.com/angular/angular
Raw File
Tip revision: f48c0bc4e3dd51096f6af72ec9a979ff589f3608 authored by Pawel Kozlowski on 13 June 2023, 15:04:53 UTC
release: cut the v16.1.0 release
Tip revision: f48c0bc
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"],
    ),
    deps = [
        "//packages:types",
        "//packages/compiler",
        "//packages/core",
        "@npm//@types/node",
        "@npm//base64-js",
        "@npm//source-map",
    ],
)
back to top