Files
kilocode/packages/plugin/tsconfig.json
T
chrarnoldus 6c03a5c076 fix: allow ES2023 library APIs
Co-authored-by: kiloconnect[bot] <240665456+kiloconnect[bot]@users.noreply.github.com>
2026-07-16 19:24:19 +00:00

15 lines
377 B
JSON

{
"$schema": "https://json.schemastore.org/tsconfig.json",
"extends": "@tsconfig/node22/tsconfig.json",
"compilerOptions": {
"rootDir": "src",
"outDir": "dist",
"module": "nodenext",
"declaration": true,
"moduleResolution": "nodenext",
"lib": ["es2023", "dom", "dom.iterable"],
"types": ["node"] // kilocode_change
},
"include": ["src"]
}