Utilize ts/tsconfig.js from ts/{editor,html-filter}

This commit is contained in:
Henrik Giesel 2021-03-26 04:58:03 +01:00 committed by Damien Elmes
parent fb9461508e
commit 05ea624f85
2 changed files with 2 additions and 2 deletions

View file

@ -19,7 +19,7 @@ sass_binary(
ts_library(
name = "editor_ts",
srcs = glob(["*.ts"]),
tsconfig = "//qt/aqt/data/web/js:tsconfig.json",
tsconfig = "//ts:tsconfig.json",
deps = [
"//ts/html-filter",
],

View file

@ -6,7 +6,7 @@ ts_library(
name = "html-filter",
srcs = glob(["*.ts"]),
module_name = "html-filter",
tsconfig = "//qt/aqt/data/web/js:tsconfig.json",
tsconfig = "//ts:tsconfig.json",
visibility = ["//visibility:public"],
deps = [],
)