-
Notifications
You must be signed in to change notification settings - Fork 48
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
Duplicate identifier 'File' with @types/node 20.10.4 #88
Comments
Can confirm, I was having the same issue. |
same issue. T.T |
Downgrading @types/node to 20.9.x can solve the problem. package.json "devDependencies": {
"@types/node": "~20.9"
} |
Another solution is to skip type checking of declaration files. {
"compilerOptions": {
"skipLibCheck": true,
...
}
} |
ChiChou
added a commit
to ChiChou/grapefruit
that referenced
this issue
Jun 20, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The text was updated successfully, but these errors were encountered: