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.
This is the minimal upgrade to TypeScript 5.
I tried to upgrade only the necessary dependencies and keep the changes to a minimum.
Notable changes:
@vue/tsconfig
upgraded from 0.1.3 to 0.3.2. Note that according to semver, it contains breaking changes. See https://github.com/vuejs/tsconfig#migrating-from-typescript--50 for more details.vue-tsc
, and Cypress MUST be upgraded to the latest version to support TypeScript 5.tsconfig
files in the barebone TypeScript template have been updated.tsconfig.json
+tsconfig.node.json
, wheretsconfig.json
contains the configuration for the web app in thesrc/
folder and a reference to thetsconfig.node.json
.tsconfig.json
+tsconfig.app.json
+tsconfig.node.json
, wheretsconfig.json
contains only references to the other 2 configs.tsconfig
files in the other templates, so that users can easily switch between templates. It also avoids some edge cases in solution-style tsconfigs.