Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion internal/web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"svelte": "^5.56.8",
"svelte-check": "^4.7.5",
"tailwindcss": "^4.3.3",
"typescript": "^6.0.3",
"typescript": "^7.0.2",

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Breaks Svelte typecheck
npm run typecheck still runs svelte-check, but svelte-check@4.7.3 embeds TypeScript's programmatic APIs and is not compatible with the TypeScript 7 package layout. The updated lockfile also shows typescript@7.0.2 only exposes the tsc bin, so the existing typecheck script will fail instead of validating the Svelte app.

Artifacts

Repro: npm run typecheck failure with TypeScript 7.0.2 and svelte-check 4.7.3

  • The full command output behind this check.

View artifacts

T-Rex Ran code and verified through T-Rex

Fix in Claude Code

"vite": "^8.2.1"
}
}
Loading