From a531628bbee8f1556836b2634e02ca7f85c9efb7 Mon Sep 17 00:00:00 2001 From: rUv Date: Fri, 22 May 2026 03:43:41 -0400 Subject: [PATCH] fix(ts): remove rootDir+declaration from agentic-synth-examples tsconfig (#500) The paths alias resolves @ruvector/agentic-synth to source files in a sibling package. TypeScript TS6059 fires when any resolved file sits outside rootDir. Removing rootDir (auto-detected from inputs) and declaration (not needed for an examples package) eliminates the 9 remaining TS6059 errors. All packages now typecheck with 0 errors. Co-authored-by: ruvnet --- npm/packages/agentic-synth-examples/tsconfig.json | 3 --- 1 file changed, 3 deletions(-) diff --git a/npm/packages/agentic-synth-examples/tsconfig.json b/npm/packages/agentic-synth-examples/tsconfig.json index ab38ec7b4..0d22b905d 100644 --- a/npm/packages/agentic-synth-examples/tsconfig.json +++ b/npm/packages/agentic-synth-examples/tsconfig.json @@ -10,11 +10,8 @@ "skipLibCheck": true, "forceConsistentCasingInFileNames": true, "resolveJsonModule": true, - "declaration": true, - "declarationMap": true, "sourceMap": true, "outDir": "./dist", - "rootDir": "./src", "types": ["node"], "paths": { "@ruvector/agentic-synth": ["../agentic-synth/src/index.ts"],