mirror of
https://github.com/aljazceru/opencode.git
synced 2025-12-24 19:24:22 +01:00
29 lines
597 B
JSON
29 lines
597 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
"extends": "@tsconfig/node22/tsconfig.json",
|
|
"compilerOptions": {
|
|
// General
|
|
"jsx": "preserve",
|
|
"jsxImportSource": "solid-js",
|
|
"target": "ESNext",
|
|
// Modules
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"isolatedModules": true,
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"noEmit": true,
|
|
"lib": [
|
|
"es2022",
|
|
"dom",
|
|
"dom.iterable"
|
|
],
|
|
// Type Checking & Safety
|
|
"strict": true,
|
|
"types": [
|
|
"vite/client",
|
|
"bun"
|
|
]
|
|
}
|
|
}
|