mirror of
https://github.com/roleypoly/roleypoly.git
synced 2025-04-24 19:39:11 +00:00
11 lines
230 B
Text
11 lines
230 B
Text
load("@npm//@bazel/typescript:index.bzl", "ts_library")
|
|
|
|
package(default_visibility = ["//visibility:public"])
|
|
|
|
ts_library(
|
|
name = "jstest",
|
|
srcs = glob(["*.ts"]),
|
|
deps = [
|
|
# "//path/to/other:library"
|
|
],
|
|
)
|