opencode_offline/packages/desktop/tsconfig.json

22 lines
540 B
JSON
Raw Normal View History

2025-11-22 13:15:01 +08:00
{
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"skipLibCheck": true,
"moduleResolution": "bundler",
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"jsx": "preserve",
"jsxImportSource": "solid-js",
"allowJs": true,
2025-12-25 10:25:36 +08:00
"resolveJsonModule": true,
"strict": true,
"isolatedModules": true,
"noEmit": true,
"emitDeclarationOnly": false,
"outDir": "node_modules/.ts-dist"
2025-11-22 13:15:01 +08:00
},
"references": [{ "path": "../app" }],
2025-12-25 10:25:36 +08:00
"include": ["src", "package.json"]
2025-11-22 13:15:01 +08:00
}