summaryrefslogtreecommitdiffhomepage
path: root/packages/desktop
diff options
context:
space:
mode:
authorBrendan Allan <[email protected]>2025-12-09 19:13:51 +0800
committerBrendan Allan <[email protected]>2025-12-09 19:13:51 +0800
commit0a47a3cea0256642bb4cb38112669cdace7732e5 (patch)
treeee7a9e73568a6708a5b7e0d2d0ac62dd8937e3d4 /packages/desktop
parent306d57fcde02b34cb486a3d539421b6877f04167 (diff)
downloadopencode-0a47a3cea0256642bb4cb38112669cdace7732e5.tar.gz
opencode-0a47a3cea0256642bb4cb38112669cdace7732e5.zip
fix: use ts project references for desktop and tauri
Diffstat (limited to 'packages/desktop')
-rw-r--r--packages/desktop/tsconfig.json5
1 files changed, 4 insertions, 1 deletions
diff --git a/packages/desktop/tsconfig.json b/packages/desktop/tsconfig.json
index 8057094c3..e91a254de 100644
--- a/packages/desktop/tsconfig.json
+++ b/packages/desktop/tsconfig.json
@@ -1,6 +1,7 @@
{
"$schema": "https://json.schemastore.org/tsconfig",
"compilerOptions": {
+ "composite": true,
"target": "ESNext",
"module": "ESNext",
"skipLibCheck": true,
@@ -11,7 +12,9 @@
"jsxImportSource": "solid-js",
"allowJs": true,
"strict": true,
- "noEmit": true,
+ "noEmit": false,
+ "emitDeclarationOnly": true,
+ "outDir": "ts-dist",
"isolatedModules": true,
"paths": {
"@/*": ["./src/*"]