-
Notifications
You must be signed in to change notification settings - Fork 5.5k
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
fix(check): npm resolution errors to tsc diagnostics #28174
fix(check): npm resolution errors to tsc diagnostics #28174
Conversation
@@ -1,3 +1,3 @@ | |||
[# Since this package has multiple cjs export errors and the resolution is done in ] | |||
[# parallel, we want to ensure the output is deterministic when there's multiple errors] | |||
error: [ERR_MODULE_NOT_FOUND] Cannot find module "[WILDLINE]not_exists.js" imported from "[WILDLINE]a.js" | |||
error: [ERR_MODULE_NOT_FOUND] Cannot find module '[WILDLINE]not_exists.js' imported from '[WILDLINE]a.js' |
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.
Node uses single quotes.
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.
LGTM
Hi Team, This change seems to have been release in 2.2.0 however the original issue still remains as documented here #27188 I'm still noticing the following error when I run it on deno 2.2.2 today.
Is there something I might not be doing right? |
Huh, you're right. I guess it only fixed it for certain scenarios. Will reopen. |
Closes #27188