-
-
Notifications
You must be signed in to change notification settings - Fork 209
(chore) TypeScript 5.0 #1919
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
(chore) TypeScript 5.0 #1919
Conversation
packages/language-server/src/plugins/typescript/features/CodeActionsProvider.ts
Outdated
Show resolved
Hide resolved
Let's wait for 5.0.3 before merging/releasing this so the TS team had the opportunity to iron out the worst bugs - this being such a big release there are likely more of those than usual. |
Just tried it out. Resolution works great on packages using Does this extension have control over whether command-clicking an import opens the |
It does not. For that the producer of the |
TODOs:
ModuleResolutionKind
enum has changed (also see TS 5.0 - ModuleResolutionKind Enum changed (breaking change that's not listed) microsoft/TypeScript#53131)Note to self: We don't need to handle the
ignoreDeprecations
situation because we parse the tsconfig but don't use its diagnostics, which is the only time where errors could be thrown because of an invalid tsconfig. It doesn't matter down the line for the other parts of language tools.