-
Notifications
You must be signed in to change notification settings - Fork 4
chore(deps-dev): bump typescript from 5.9.3 to 6.0.3 in /web #99
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🧩 Analysis chain
🌐 Web query:
TypeScript 6.0 release notes breaking changes💡 Result:
TypeScript 6.0, released on March 23, 2026, serves as a significant transition release designed to prepare developers for TypeScript 7.0, which will introduce a native port of the compiler [1][2][3]. While TypeScript 6.0 maintains API compatibility with version 5.9, it introduces several breaking changes and deprecations [1][2]. Important Migration Note: To ease the transition, deprecations in TypeScript 6.0 can be temporarily ignored by setting "ignoreDeprecations": "6.0" in your tsconfig.json [1][2][4]. However, these options will be removed entirely in TypeScript 7.0 [1][5]. Key Breaking Changes and Default Shifts: - Strict Mode: "strict" now defaults to true [1][2][6]. - Module Format: "module" now defaults to "esnext" [3][6]. - ECMAScript Target: "target" now defaults to "es2025" [3][6]. - Module Resolution: "moduleResolution" now defaults to "bundler" [3]. The "classic" resolution strategy is removed entirely [6]. - Type Defaults: "types" now defaults to an empty array ([]) [1][2][6]. - Project Root: "rootDir" now defaults to the directory containing your tsconfig.json, rather than the computed source root [3][6][5]. - Library Imports: "noUncheckedSideEffectImports" now defaults to true [3][6]. - Import Settings: "esModuleInterop" and "allowSyntheticDefaultImports" are now always enabled [2][6]. Deprecated Features: The following features are deprecated and will be removed in TypeScript 7.0 [1][2]: - target: "es5" [1][2][6] - --moduleResolution node (use "node10" or "bundler" instead) [1][2][5] - --moduleResolution classic [1][2][6] - --downlevelIteration [2] - --baseUrl [2][5] - --esModuleInterop false and --allowSyntheticDefaultImports false [2] - --alwaysStrict false [2][5] - outFile [2][5] - asserts keyword on imports [2][5] - no-default-lib directives [2][5] Additionally, using AMD, UMD, or System module formats will now trigger compiler errors [6]. Specifying files via the command line when a tsconfig.json exists is also now an error [5].
Citations:
🏁 Script executed:
Repository: Pythoughts-labs/pythinker-code
Length of output: 890
TypeScript 6.x bump breaks web typecheck—fix
baseUrldeprecation in tsconfig first.TypeScript 6.0 introduces breaking changes/deprecations, and with
"typescript": "~6.0.3"the web build fails inweb/tsconfig.app.json(28,5)withTS5101(“Option 'baseUrl' is deprecated… Specify 'ignoreDeprecations': '6.0' to silence”). Updateweb/tsconfig.app.jsonto migrate away frombaseUrl(or add"ignoreDeprecations": "6.0"as an unblocker) sonpm run typecheck/make check-webpasses.🤖 Prompt for AI Agents