summaryrefslogtreecommitdiffhomepage
path: root/packages/desktop
diff options
context:
space:
mode:
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/*"]
}