summaryrefslogtreecommitdiffhomepage
path: root/app/packages/web/tsconfig.json
diff options
context:
space:
mode:
authorFrank <[email protected]>2025-05-23 15:57:33 -0400
committerDax Raad <[email protected]>2025-05-26 12:40:17 -0400
commitd51b4263aba59f60277766fc024f2931fc8874ec (patch)
treea9dfed63563a88bc26cb2d37d582e2c14a5d9331 /app/packages/web/tsconfig.json
parent34a2dcb80a28e208c986d39ce1e145f245691f62 (diff)
downloadopencode-d51b4263aba59f60277766fc024f2931fc8874ec.tar.gz
opencode-d51b4263aba59f60277766fc024f2931fc8874ec.zip
Share: sync
Diffstat (limited to 'app/packages/web/tsconfig.json')
-rw-r--r--app/packages/web/tsconfig.json12
1 files changed, 4 insertions, 8 deletions
diff --git a/app/packages/web/tsconfig.json b/app/packages/web/tsconfig.json
index 7d5871a07..249b2732a 100644
--- a/app/packages/web/tsconfig.json
+++ b/app/packages/web/tsconfig.json
@@ -1,19 +1,15 @@
{
"compilerOptions": {
+ "strict": true,
"target": "ESNext",
"module": "ESNext",
- "moduleResolution": "bundler",
+ "moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"jsx": "preserve",
"jsxImportSource": "solid-js",
- "allowJs": true,
- "strict": true,
+ "types": ["vite/client"],
"noEmit": true,
- "types": ["vinxi/types/client"],
- "isolatedModules": true,
- "paths": {
- "~/*": ["./src/*"]
- }
+ "isolatedModules": true
}
}