-
Notifications
You must be signed in to change notification settings - Fork 12.8k
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
TypeScript 4.9 does not build Playwright anymore #51619
Comments
|
This is from @next and 4.9 so its persistent on both versions.
|
The errors related to The remaining errors are all related to type parameter variance for the Meanwhile, a simple way to fix this is to add an explicit // @ts-ignore-errors
export class ElementHandle<out T extends Node = Node> extends js.JSHandle<T> {
// ...
} |
Manually bisected the break to #50397. |
So, the specific change in #50397 that caused the break is the same I discuss here. Previously we didn't correctly analyze the full set of constraints of conditional types, and this weaker analysis always didn't hit upon the infinite recursion that can occur between the |
Fixes microsoft/TypeScript#51619 Co-authored-by: Max Schmitt <max@schmitt.mx>
Thanks! We were able to resolve it, so closing for now. |
Bug Report
π Search Terms
conditional types, 4.9, infer, regression
π Version & Regression Information
bad : 4.9.0-dev.20220827
not available on NPM : 4.9.0-dev.20220826
good : 4.9.0-dev.20220825
β― Playground Link
Wasn't able to make a small independent repro out of it, but these are the repro steps:
π Actual behavior
Does not transpile, a lot of weird errors which did not make sense to me.
π Expected behavior
It compiles without any errors.
cc @andrewbranch @DanielRosenwasser since both interacted with Playwright and TypeScript before to try out the new RCs.
The text was updated successfully, but these errors were encountered: