chore: upgrade TypeScript dependency to version 7.0.0 - #11
Conversation
There was a problem hiding this comment.
Code Review
This pull request upgrades TypeScript to version 7 across the monorepo, updates related development tools (oxfmt, oxlint, and turbo), and updates documentation. The review feedback suggests aligning the TypeScript dependency version in the client, server, and shared workspaces to match the root package.json version (^7.0.2) to maintain consistency across all packages.
Important
The consumer version of Gemini Code Assist on GitHub is being sunset. Starting June 18, 2026, new organization installations will be blocked, and all code review activity will officially cease on July 17, 2026.
For more details on the timeline and next steps, please review the Help Documentation.
| "globals": "^17.4.0", | ||
| "tw-animate-css": "^1.4.0", | ||
| "typescript": "~6.0.3", | ||
| "typescript": "~7.0.0", |
There was a problem hiding this comment.
In a monorepo, it is a best practice to keep the TypeScript version consistent across all workspaces to avoid issues with different compiler versions and type-checking behaviors. Consider aligning this with the root package.json version (^7.0.2).
| "typescript": "~7.0.0", | |
| "typescript": "^7.0.2", |
| "@types/bun": "^1.3.14", | ||
| "drizzle-kit": "^0.31.9", | ||
| "typescript": "^6.0.3" | ||
| "typescript": "^7.0.0" |
There was a problem hiding this comment.
In a monorepo, it is a best practice to keep the TypeScript version consistent across all workspaces to avoid issues with different compiler versions and type-checking behaviors. Consider aligning this with the root package.json version (^7.0.2).
| "typescript": "^7.0.0" | |
| "typescript": "^7.0.2" |
| }, | ||
| "devDependencies": { | ||
| "typescript": "^6.0.3" | ||
| "typescript": "^7.0.0" |
There was a problem hiding this comment.
In a monorepo, it is a best practice to keep the TypeScript version consistent across all workspaces to avoid issues with different compiler versions and type-checking behaviors. Consider aligning this with the root package.json version (^7.0.2).
| "typescript": "^7.0.0" | |
| "typescript": "^7.0.2" |
|
/gemini recheck |
|
I have re-examined the pull request. The updates to TypeScript (to 7.0.2), along with the corresponding updates to |
No description provided.