2
0
Dax Raad 5 сар өмнө
parent
commit
df046e5e04

+ 1 - 1
.github/workflows/typecheck.yml

@@ -1,4 +1,4 @@
-name: Typecheck
+name: typecheck
 
 on:
   pull_request:

+ 13 - 3
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/*"
+      ]
     }
   }
 }