2025-08-25 20:00:53 +00:00
|
|
|
load("//tools:defaults.bzl", "ts_project")
|
2019-01-28 20:59:25 +00:00
|
|
|
|
2022-03-15 22:32:44 +00:00
|
|
|
package(default_visibility = ["//visibility:public"])
|
|
|
|
|
|
2025-05-23 16:25:04 +00:00
|
|
|
ts_project(
|
2019-01-28 20:59:25 +00:00
|
|
|
name = "testing_examples",
|
2025-05-23 16:25:04 +00:00
|
|
|
testonly = True,
|
2019-01-28 20:59:25 +00:00
|
|
|
srcs = glob(["**/*.ts"]),
|
|
|
|
|
deps = [
|
2025-05-23 16:25:04 +00:00
|
|
|
"//:node_modules/@types/jasmine",
|
|
|
|
|
"//:node_modules/@types/node",
|
2019-01-28 20:59:25 +00:00
|
|
|
],
|
|
|
|
|
)
|
2022-03-15 22:32:44 +00:00
|
|
|
|
|
|
|
|
filegroup(
|
|
|
|
|
name = "files_for_docgen",
|
|
|
|
|
srcs = glob([
|
|
|
|
|
"**/*.ts",
|
|
|
|
|
]),
|
|
|
|
|
)
|