mirror of
https://github.com/ruvnet/RuVector.git
synced 2026-05-23 04:27:11 +00:00
- node: add declarationMap:false to tsconfig.cjs.json to suppress TS5069
(parent tsconfig has declarationMap:true; CJS build disables declaration
so declarationMap must be explicitly disabled too)
- postgres-cli: cast Commander action options to `any` to fix TS2345/TS2698/
TS2339 on the routing update command (Commander types don't carry option
shape into the action callback)
- ruvbot: add debug? to RuvBotOptions (CLI was passing it but type lacked field)
- ruvbot: fix RuvBotOptions constructor call — BotConfig fields (api, etc.)
belong inside config:{} not spread at top level (TS2353)
- ruvbot: return Promise.resolve(false) in enablePlugin/disablePlugin early
returns instead of bare false (TS2322 — return type is Promise<boolean>)
Co-Authored-By: claude-flow <ruv@ruv.net>
11 lines
226 B
JSON
11 lines
226 B
JSON
{
|
|
"extends": "./tsconfig.json",
|
|
"compilerOptions": {
|
|
"module": "CommonJS",
|
|
"moduleResolution": "Node",
|
|
"outDir": "./dist",
|
|
"declaration": false,
|
|
"declarationMap": false
|
|
},
|
|
"include": ["src/**/*"]
|
|
}
|