summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/typecheck.yml2
-rw-r--r--packages/app/tsconfig.json16
2 files changed, 14 insertions, 4 deletions
diff --git a/.github/workflows/typecheck.yml b/.github/workflows/typecheck.yml
index 2d24d45e9..e80896566 100644
--- a/.github/workflows/typecheck.yml
+++ b/.github/workflows/typecheck.yml
@@ -1,4 +1,4 @@
-name: Typecheck
+name: typecheck
on:
pull_request:
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/*"
+ ]
}
}
}