ruvector/npm/packages/node/tsconfig.cjs.json
ruvnet 07105268ae fix(ts): resolve 7 TypeScript build errors across node, postgres-cli, ruvbot
- 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>
2026-05-22 11:23:49 -04:00

11 lines
226 B
JSON

{
"extends": "./tsconfig.json",
"compilerOptions": {
"module": "CommonJS",
"moduleResolution": "Node",
"outDir": "./dist",
"declaration": false,
"declarationMap": false
},
"include": ["src/**/*"]
}