Files
kilocode/packages/opencode/tsconfig.json
T
2026-07-14 14:56:36 +02:00

18 lines
516 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/*": ["../tui/src/*"], // kilocode_change - extracted TUI imports used by Kilo-owned components
"@test/*": ["./test/*"]
}
}
}