mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-10-31 20:41:22 +00:00
17 lines
304 B
Python
17 lines
304 B
Python
load("@raw_ts_library//:index.bzl", "raw_ts_library")
|
|
|
|
package(default_visibility = ["//visibility:public"])
|
|
|
|
raw_ts_library(
|
|
name = "dotui",
|
|
srcs = glob([
|
|
"*.ts",
|
|
"*.tsx",
|
|
]),
|
|
module_name = "dotui",
|
|
deps = [
|
|
"@npm//react",
|
|
"@npm//react-dom",
|
|
],
|
|
)
|