mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
28 lines
524 B
Text
28 lines
524 B
Text
load("//adev/shared-docs:defaults.bzl", "ts_project")
|
|
|
|
package(default_visibility = ["//visibility:private"])
|
|
|
|
ts_project(
|
|
name = "testing",
|
|
srcs = [
|
|
"index.ts",
|
|
],
|
|
visibility = ["//adev/shared-docs:__subpackages__"],
|
|
deps = [
|
|
":lib",
|
|
],
|
|
)
|
|
|
|
ts_project(
|
|
name = "lib",
|
|
srcs = glob(
|
|
["*.ts"],
|
|
exclude = [
|
|
"index.ts",
|
|
],
|
|
),
|
|
deps = [
|
|
"//adev:node_modules/@angular/core",
|
|
"//adev:node_modules/@webcontainer/api",
|
|
],
|
|
)
|