-
-
Notifications
You must be signed in to change notification settings - Fork 103
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
[cspell-types]
Interfaces *Source
incorrectly extends interface BaseSource
#2011
Comments
Thank you. I'll take a look. |
I'm not able to reproduce this. Do you have a sample repo with the problem? What version of Typescript are you using? Kind regards, |
I just install the Yeah, I got what the problem is. I cloned your repository and add TypeScript: 4.5.2 |
Hmm, I need to find a workaround for that. I'm not sure if it is possible. That is the whole point of extending the base is to turn an optional property into a required one. |
Thanks. |
This issue has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
Info
Kind of Issue
Which Tool or library
Which Version
Version: 5.13.0
Issue with supporting library?
OS:
Bug Description
Describe the bug
Interfaces
*Source
incorrectly extends interfaceBaseSource
.Possible Solution
If possible, remove
extends BaseSource
as below.or
add before each problematic interface
// @ts-expect-error TS2430
.Screenshots
extends BaseSource
causes an error:without
extends BaseSource
:The text was updated successfully, but these errors were encountered: