blob: 0a6e768f934c9aa50dba8db09dc3c2bf330b0ac3 [file] [log] [blame]
load("@npm//@bazel/concatjs:index.bzl", "ts_library")
package(default_visibility = ["//visibility:public"])
# TODO: Would be nice to use `ts_project` from @bazel/typescript instead.
# We would prefer to not depend on @bazel/concatjs ...
ts_library(
name = "utils",
srcs = glob(["*.ts"]),
tsconfig = "tsconfig.json",
deps = [
"@tools_npm//:node_modules",
],
)