mirror of
https://github.com/sst/opencode.git
synced 2025-12-23 10:11:41 +00:00
24 lines
589 B
JSON
24 lines
589 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
"compilerOptions": {
|
|
"composite": true,
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"skipLibCheck": true,
|
|
"moduleResolution": "bundler",
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"jsx": "preserve",
|
|
"jsxImportSource": "solid-js",
|
|
"allowJs": true,
|
|
"strict": true,
|
|
"noEmit": false,
|
|
"emitDeclarationOnly": true,
|
|
"outDir": "node_modules/.ts-dist",
|
|
"isolatedModules": true,
|
|
"paths": {
|
|
"@/*": ["./src/*"]
|
|
}
|
|
},
|
|
"exclude": ["dist", "ts-dist"]
|
|
}
|