mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-11-09 16:11:23 +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",
|
||
|
],
|
||
|
)
|