mirror of
https://github.com/Kilo-Org/kilocode.git
synced 2026-09-01 15:32:11 +08:00
f74d54c431
* feat(core): implement codebase indexing * feat(core): gate indexing behind experimental flag * fix: improvements to slow provider startups and indexing init blocking the world * test(cli): stabilize indexing startup tests * test(cli): avoid indexing startup hang * test(cli): avoid CI startup leaks * test(cli): annotate provider test change * fix(indexing): tighten dependency surface * refactor(cli): move indexing logic into kilocode paths * test(cli): skip flaky shell cancel prompt cases * fix(cli): tolerate slow Windows worktree cleanup * fix(vscode): authenticate indexing status fetch --------- Co-authored-by: Marius <marius@kilocode.ai>
16 lines
376 B
JSON
16 lines
376 B
JSON
{
|
|
"extends": "@tsconfig/node22/tsconfig.json",
|
|
"compilerOptions": {
|
|
"module": "ESNext",
|
|
"moduleResolution": "Bundler",
|
|
"outDir": "./dist",
|
|
"rootDir": "./src",
|
|
"skipLibCheck": true,
|
|
"noUncheckedIndexedAccess": false,
|
|
"types": ["node"],
|
|
"lib": ["ESNext", "DOM", "DOM.Iterable"]
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["node_modules"]
|
|
}
|