diff options
Diffstat (limited to 'packages/desktop')
| -rw-r--r-- | packages/desktop/tsconfig.json | 5 |
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/*"] |
