mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
This is an incremental step to produce dgeni output with bazel. The generated outputs are not yet used by other targets.
20 lines
388 B
Text
20 lines
388 B
Text
load("//tools:defaults.bzl", "ts_library")
|
|
|
|
package(default_visibility = ["//visibility:public"])
|
|
|
|
ts_library(
|
|
name = "testing_examples",
|
|
srcs = glob(["**/*.ts"]),
|
|
tsconfig = "//packages:tsconfig-test",
|
|
deps = [
|
|
"@npm//@types/jasmine",
|
|
"@npm//@types/node",
|
|
],
|
|
)
|
|
|
|
filegroup(
|
|
name = "files_for_docgen",
|
|
srcs = glob([
|
|
"**/*.ts",
|
|
]),
|
|
)
|