mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
20 lines
430 B
Text
20 lines
430 B
Text
package(default_visibility = ["//visibility:public"])
|
|
|
|
exports_files(["package.json"])
|
|
|
|
load("//tools:defaults.bzl", "ng_module")
|
|
|
|
ng_module(
|
|
name = "testing",
|
|
srcs = glob(
|
|
["**/*.ts"],
|
|
exclude = ["testing.ts"],
|
|
),
|
|
module_name = "@angular/compiler/testing",
|
|
deps = [
|
|
"//packages:types",
|
|
"//packages/compiler",
|
|
"//packages/core",
|
|
"@ngdeps//@types/node",
|
|
],
|
|
)
|