-
-
Notifications
You must be signed in to change notification settings - Fork 8.6k
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
types: compatible with TS 5.8 #12973
base: main
Are you sure you want to change the base?
Conversation
Size ReportBundles
Usages
|
@vue/compiler-core
@vue/compiler-dom
@vue/compiler-sfc
@vue/compiler-ssr
@vue/reactivity
@vue/runtime-core
@vue/runtime-dom
@vue/server-renderer
@vue/shared
vue
@vue/compat
commit: |
@@ -113,7 +118,9 @@ export function queueJob(job: SchedulerJob): void { | |||
|
|||
function queueFlush() { | |||
if (!currentFlushPromise) { | |||
currentFlushPromise = resolvedPromise.then(flushJobs) | |||
currentFlushPromise = resolvedPromise.then(() => { |
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.
I tested that revert this change and the change of line 50.
tsc works fine.
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.
Yes. I just thought we can get rid of the type assertion, I can change it back.
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.
Reverted.
I added some type tests for |
/ecosystem-ci run |
📝 Ran ecosystem CI: Open
|
Ref: https://devblogs.microsoft.com/typescript/announcing-typescript-5-8/#granular-checks-for-branches-in-return-expressions
This PR didn't upgrade TypeScript, it only fixed the type errors that arose after the upgrade.
I couldn't find an elegant solution for
proxyRefs
, so I resorted to usingas any
😬