cloudaxe-opencode/packages/tauri/tsconfig.json

21 lines
497 B
JSON
Raw Normal View History

2025-11-22 05:15:01 +00:00
{
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"skipLibCheck": true,
"moduleResolution": "bundler",
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"jsx": "preserve",
"jsxImportSource": "solid-js",
"allowJs": true,
"strict": true,
"isolatedModules": true,
"noEmit": true,
"emitDeclarationOnly": false,
"outDir": "node_modules/.ts-dist"
2025-11-22 05:15:01 +00:00
},
"references": [{ "path": "../desktop" }],
2025-11-22 05:15:01 +00:00
"include": ["src"]
}