mirror of
https://github.com/aljazceru/opencode.git
synced 2025-12-24 11:14:23 +01:00
17 lines
419 B
JSON
17 lines
419 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
"extends": "@tsconfig/bun/tsconfig.json",
|
|
"compilerOptions": {
|
|
"jsx": "preserve",
|
|
"jsxImportSource": "@opentui/solid",
|
|
"lib": ["ESNext", "DOM", "DOM.Iterable"],
|
|
"types": [],
|
|
"noUncheckedIndexedAccess": false,
|
|
"customConditions": ["browser"],
|
|
"paths": {
|
|
"@/*": ["./src/*"],
|
|
"@tui/*": ["./src/cli/cmd/tui/*"]
|
|
}
|
|
}
|
|
}
|