summaryrefslogtreecommitdiffhomepage
path: root/packages/desktop
diff options
context:
space:
mode:
authorDax Raad <[email protected]>2025-10-10 18:17:10 -0400
committerDax Raad <[email protected]>2025-10-10 18:17:10 -0400
commit07645e070525e627cda5cd4ad7f001f70cbc57dc (patch)
treec8b7fcbcafbab3af819ca49625865b3d6463b15c /packages/desktop
parentf053862018aab62a02ae994dca6bb9b8aabc3298 (diff)
downloadopencode-07645e070525e627cda5cd4ad7f001f70cbc57dc.tar.gz
opencode-07645e070525e627cda5cd4ad7f001f70cbc57dc.zip
ci: fixes
Diffstat (limited to 'packages/desktop')
-rw-r--r--packages/desktop/tsconfig.json13
1 files changed, 10 insertions, 3 deletions
diff --git a/packages/desktop/tsconfig.json b/packages/desktop/tsconfig.json
index d86b8ca46..82541a6d3 100644
--- a/packages/desktop/tsconfig.json
+++ b/packages/desktop/tsconfig.json
@@ -1,11 +1,18 @@
{
"$schema": "https://json.schemastore.org/tsconfig",
- "extends": "@tsconfig/bun/tsconfig.json",
"compilerOptions": {
+ "target": "ESNext",
+ "module": "ESNext",
+ "skipLibCheck": true,
+ "moduleResolution": "bundler",
+ "allowSyntheticDefaultImports": true,
+ "esModuleInterop": true,
"jsx": "preserve",
"jsxImportSource": "solid-js",
- "types": ["vite/client"],
- "lib": ["DOM", "DOM.Iterable"],
+ "allowJs": true,
+ "strict": true,
+ "noEmit": true,
+ "isolatedModules": true,
"paths": {
"@/*": ["./src/*"]
}