mirror of
https://github.com/aljazceru/opencode.git
synced 2025-12-24 11:14:23 +01:00
25 lines
498 B
JSON
25 lines
498 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"jsx": "preserve",
|
|
"jsxImportSource": "solid-js",
|
|
"allowJs": true,
|
|
"strict": true,
|
|
"noEmit": true,
|
|
"types": [
|
|
"vinxi/types/client"
|
|
],
|
|
"isolatedModules": true,
|
|
"paths": {
|
|
"~/*": [
|
|
"./src/*"
|
|
]
|
|
}
|
|
}
|
|
}
|