cloudaxe-opencode/packages/desktop/tsconfig.json

22 lines
482 B
JSON
Raw Permalink Normal View History

{
"$schema": "https://json.schemastore.org/tsconfig",
"compilerOptions": {
2025-10-10 22:17:10 +00:00
"target": "ESNext",
"module": "ESNext",
"skipLibCheck": true,
"moduleResolution": "bundler",
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"jsx": "preserve",
"jsxImportSource": "solid-js",
2025-10-10 22:17:10 +00:00
"allowJs": true,
"strict": true,
"noEmit": true,
"isolatedModules": true,
"paths": {
2025-12-06 11:53:20 +00:00
"@/*": ["./src/*"]
}
2025-12-06 11:52:47 +00:00
},
2025-12-06 11:53:20 +00:00
"exclude": ["dist"]
}