Files
Paul Gschwendtner aa0c46f4f3 build: migrate packages/compiler to ts_project
Migrates `packages/compiler` to `ts_project`.
2025-05-30 10:01:23 +02:00

13 lines
258 B
Python

load("//tools:defaults2.bzl", "ts_project")
ts_project(
name = "util",
testonly = True,
srcs = glob(["**/*.ts"]),
interop_deps = [
"//packages:types",
"//packages/compiler",
],
visibility = ["//visibility:public"],
)