mirror of
https://github.com/Kilo-Org/kilocode.git
synced 2026-09-21 05:52:35 +08:00
24 lines
496 B
JSON
24 lines
496 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"lib": ["ES2023", "DOM", "DOM.Iterable"],
|
|
"jsx": "preserve",
|
|
"jsxImportSource": "solid-js",
|
|
"strict": true,
|
|
"noEmit": true,
|
|
"isolatedModules": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true
|
|
},
|
|
"include": [
|
|
"src/**/*",
|
|
"agent-manager/**/*",
|
|
"kiloclaw/**/*",
|
|
"marketplace/**/*",
|
|
"diff-viewer/**/*",
|
|
"diff-virtual/**/*"
|
|
]
|
|
}
|