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 <ruvnet@gmail.com>
This commit is contained in:
rUv 2026-05-22 03:43:41 -04:00 committed by GitHub
parent 2495b8f1b6
commit a531628bbe
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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"],