diff options
| author | Dax Raad <[email protected]> | 2025-09-15 03:30:15 -0400 |
|---|---|---|
| committer | Dax Raad <[email protected]> | 2025-09-15 03:30:26 -0400 |
| commit | df046e5e04a4ec6da1ece583aa24394e0ad688ae (patch) | |
| tree | 5197d8c57aa07f662249a8aff3753b0ba6b21e4e | |
| parent | e0bfbcb663fd7e1628ac816ace84d4b64e993b78 (diff) | |
| download | opencode-df046e5e04a4ec6da1ece583aa24394e0ad688ae.tar.gz opencode-df046e5e04a4ec6da1ece583aa24394e0ad688ae.zip | |
ci: typecheck
| -rw-r--r-- | .github/workflows/typecheck.yml | 2 | ||||
| -rw-r--r-- | 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/*" + ] } } } |
