5ecaabf claimed 'resolve tsc errors' but actually only resolved
environment errors (missing @types/node → fs/path/crypto/Buffer; stale
dist/*.d.ts build artifacts). The commit message was misleading.
Real status after 5ecaabf:
- 51 TS6305 stale build artifacts (now cleaned here)
- 79 remaining CODE errors in runtime package:
* 40 TS6133 noUnusedLocals (dead fields/imports/params)
* 9 TS2749 EventIngestor value used as type
* 8 TS6196 unused type imports
* 6 TS2304 cannot find name
* 5 TS2532 possibly undefined (CompactionPolicy, etc.)
* 2 TS7006 implicit any
* 2 TS6192 all imports unused
* 2 TS2345/TS2339 type mismatch
* 1 TS2552 createCapabilityManifestValidator not found
* 1 TS2554 wrong arity
* 1 TS18048 x is possibly null
These are not regressions from 5 rounds of repair. They are pre-existing
code-level issues that 5ecaabf's title did not accurately convey.
This commit: only removes 1 stale build artifact. A dedicated cleanup
commit will follow to actually resolve the 79 code errors.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>