From df046e5e04a4ec6da1ece583aa24394e0ad688ae Mon Sep 17 00:00:00 2001 From: Dax Raad Date: Mon, 15 Sep 2025 03:30:15 -0400 Subject: [PATCH] ci: typecheck --- .github/workflows/typecheck.yml | 2 +- packages/app/tsconfig.json | 16 +++++++++++++--- 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/*" + ] } } }