summaryrefslogtreecommitdiffhomepage
path: root/packages
diff options
context:
space:
mode:
Diffstat (limited to 'packages')
-rw-r--r--packages/app/tsconfig.json16
1 files changed, 13 insertions, 3 deletions
diff --git a/packages/app/tsconfig.json b/packages/app/tsconfig.json
index b0def7dab..4146b910f 100644
--- a/packages/app/tsconfig.json
+++ b/packages/app/tsconfig.json
@@ -4,10 +4,20 @@
"compilerOptions": {
"jsx": "preserve",
"jsxImportSource": "solid-js",
- "types": ["vite/client"],
- "customConditions": ["development"],
+ "types": [
+ "vite/client"
+ ],
+ "lib": [
+ "DOM",
+ "DOM.Iterable",
+ ],
+ "customConditions": [
+ "development"
+ ],
"paths": {
- "@/*": ["./src/*"]
+ "@/*": [
+ "./src/*"
+ ]
}
}
}