mirror of
https://github.com/Kilo-Org/kilocode.git
synced 2026-08-28 11:05:31 +08:00
18 lines
619 B
JSON
18 lines
619 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
"extends": "@tsconfig/bun/tsconfig.json",
|
|
"compilerOptions": {
|
|
"jsx": "preserve",
|
|
"jsxImportSource": "@opentui/solid",
|
|
"lib": ["ESNext", "DOM", "DOM.Iterable"],
|
|
"noUncheckedIndexedAccess": false,
|
|
// kilocode_change - resolve Kilo integrations retained during upstream's standalone TUI extraction
|
|
"paths": {
|
|
"@/*": ["../opencode/src/*"],
|
|
"@tui/*": ["./src/*"]
|
|
}
|
|
},
|
|
// kilocode_change - include ambient declarations used by retained Kilo imports from opencode
|
|
"include": ["src", "test", "../opencode/src/*.d.ts"]
|
|
}
|