mirror of
https://github.com/ankitects/anki.git
synced 2025-12-04 10:27:12 -05:00
16 lines
340 B
Text
16 lines
340 B
Text
load("@npm//@bazel/typescript:index.bzl", "ts_library")
|
|
|
|
ts_library(
|
|
name = "editor",
|
|
srcs = glob(["*.ts"]),
|
|
tsconfig = "//qt/aqt/data/web/js:tsconfig.json",
|
|
deps = [
|
|
"//qt/aqt/data/web/js:pycmd",
|
|
"@npm//@types/jquery",
|
|
],
|
|
visibility = ["//qt:__subpackages__"],
|
|
)
|
|
|
|
exports_files([
|
|
"index.ts",
|
|
])
|