opencode/packages/desktop/tsconfig.json

21 lines
459 B
JSON
Raw Normal View History

{
"$schema": "https://json.schemastore.org/tsconfig",
"compilerOptions": {
2025-10-11 06:17:10 +08:00
"target": "ESNext",
"module": "ESNext",
"skipLibCheck": true,
"moduleResolution": "bundler",
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"jsx": "preserve",
"jsxImportSource": "solid-js",
2025-10-11 06:17:10 +08:00
"allowJs": true,
"strict": true,
"noEmit": true,
"isolatedModules": true,
"paths": {
2025-09-15 15:31:02 +08:00
"@/*": ["./src/*"]
}
}
}