Files
opencode/packages/app/tsconfig.json
2025-09-15 03:30:26 -04:00

24 lines
399 B
JSON

{
"$schema": "https://json.schemastore.org/tsconfig",
"extends": "@tsconfig/bun/tsconfig.json",
"compilerOptions": {
"jsx": "preserve",
"jsxImportSource": "solid-js",
"types": [
"vite/client"
],
"lib": [
"DOM",
"DOM.Iterable",
],
"customConditions": [
"development"
],
"paths": {
"@/*": [
"./src/*"
]
}
}
}