fix: resolve TypeScript build errors blocking compilation#8
Draft
Jacobcdsmith with Copilot wants to merge 1 commit into
Draft
fix: resolve TypeScript build errors blocking compilation#8Jacobcdsmith with Copilot wants to merge 1 commit into
Jacobcdsmith with Copilot wants to merge 1 commit into
Conversation
… cast) Agent-Logs-Url: https://github.com/Jacobcdsmith/jclaw-framework/sessions/f6df2783-4e30-4cd6-a337-286812d8ecaa Co-authored-by: Jacobcdsmith <88069592+Jacobcdsmith@users.noreply.github.com>
Copilot created this pull request from a session on behalf of
Jacobcdsmith
May 2, 2026 11:30
View session
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The project failed to compile due to missing Node.js type resolution, a misnamed property in a session params call, and unsafe type casts in the Express webhook handler.
Changes
tsconfig.json— Added"types": ["node"]so TypeScript resolves@types/node(already in devDeps). Without this,process,console,fs,crypto,path,os, and all Node builtins were unresolved across the entire codebase.src/gate/protocol.ts— Renamedname→labelin thestartSession()call for the metrics probe.CreateSessionParamsexposeslabel, notname.src/gate/server.ts— Fixed two casts of Express/NodereqtoRecord<string, unknown>by routing throughunknownfirst (as unknown as Record<string, unknown>), required when source and target types don't structurally overlap.