-
Notifications
You must be signed in to change notification settings - Fork 25
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
wrong casing on reference types causes typscript build issues #481
Comments
NoriSte
added a commit
that referenced
this issue
Jul 16, 2024
NoriSte
added a commit
that referenced
this issue
Jul 16, 2024
@all-contributors please add @piccit for bug |
I've put up a pull request to add @piccit! 🎉 |
NoriSte
added a commit
that referenced
this issue
Jul 16, 2024
Thank you for reporting it!! Let me know if the just-published |
Works like a charm, thanks! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I have an internal helper library that uses cypress-wait-until written in typescript. When trying to update to typescript 5.5 it fails to build due to
Cannot find type definition file for 'Cypress'
/ "file name differs only in casing" referring toCypress
vscypress
. The capital CCypress
is coming from cypress-wait-until's index.d.ts and plugin.spec.ts. The actual cypress node module is all lowercase, so I believe these 2 references should be/// <reference types="cypress" />
instead of using a capital CThe text was updated successfully, but these errors were encountered: