You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
PR #143 (spike Custom Editor, addressing #138) added "typecheck": "tsc --noEmit" to packages/vscode-extension/package.json in commit 2d10016. Running this surfaced 4 latent type errors in src/extension.ts — calls to isStale / clearStale / deletedStaleProjectCount that were never wired through in core.
main currently has the same latent bug, but pnpm -r typecheck silently skips vscode-extension because there is no typecheck script. PR #146 removes the inert calls and would resolve the typecheck error once the script is in place.
Proposed
Add "typecheck": "tsc --noEmit" to packages/vscode-extension/package.json on main
Context
PR #143 (spike Custom Editor, addressing #138) added
"typecheck": "tsc --noEmit"topackages/vscode-extension/package.jsonin commit2d10016. Running this surfaced 4 latent type errors insrc/extension.ts— calls toisStale/clearStale/deletedStaleProjectCountthat were never wired through in core.maincurrently has the same latent bug, butpnpm -r typechecksilently skips vscode-extension because there is notypecheckscript. PR #146 removes the inert calls and would resolve the typecheck error once the script is in place.Proposed
"typecheck": "tsc --noEmit"topackages/vscode-extension/package.jsononmainmainonce the script is addedVerification
pnpm -r typecheckruns vscode-extension and exits 0 onmainpnpm buildRelated
2d10016