You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
388 B
Python
14 lines
388 B
Python
package(default_visibility = ["//visibility:public"])
|
|
|
|
load("@build_bazel_rules_typescript//:defs.bzl", "ts_library")
|
|
|
|
ts_library(
|
|
name = "testing",
|
|
srcs = ["index.ts"],
|
|
module_name = "rxjs/testing",
|
|
module_root = "index.d.ts",
|
|
node_modules = "@build_bazel_rules_typescript_tsc_wrapped_deps//:node_modules",
|
|
tsconfig = "//:tsconfig.json",
|
|
deps = ["//:lib"],
|
|
)
|