-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
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 w/ esModuleInterop: import Sentry from "@sentry/{node|browser}"
is not an error, but does not work.
#3105
Comments
+1 on this |
Same goes for
|
@rbisol Why is this not a bug. It basically makes this library unusable when you are working in an environment requiring interop? |
I’ve ran into this problem as well. Since we are using dependency injection we almost shipped a broken version of our app to production. |
FWIW, if I remove this line from the commonJS module: |
any news? |
@imsamurai is this still an issue with the newest version of the SDK? We updated how we bundle the SDK in version |
still a problem, no default export |
This is still a problem. Is there any fix in the works? This is incredibly dangerous especially for a module that tends to be used as part of error handling. Its very easy for this to go unnoticed until a bug causes a new exception. As an example, |
HI @amc6, could you share more details in how you ran into this? We do not document So could you share:
|
@mydea I did some digging around this issue a while ago and I think we have to play around with enableLegacyTypeScriptModuleInterop. |
This issue has gone three weeks without activity. In another week, I will close it. But! If you comment or otherwise update it, I will reset the clock, and if you remove the label "A weed is but an unloved flower." ― Ella Wheeler Wilcox 🥀 |
This is still an issue, the issue can stay open |
This issue has gone three weeks without activity. In another week, I will close it. But! If you comment or otherwise update it, I will reset the clock, and if you remove the label "A weed is but an unloved flower." ― Ella Wheeler Wilcox 🥀 |
Even though we are not working on this right now, we still shouldn't close it. The issue has 20 thumbs. |
Okay, I have been looking at this again. I hope I won't make myself too unpopular with the following but I believe we should close this issue without particularly fixing it. The way we currently build our packages
As I understand it, the I also looked into Rollup's So effectively we are making two calls:
If anybody else has input or suggestions on how to resolve the topic please reach out. I may be missing something. |
https://arethetypeswrong.github.io/?p=%40sentry%2Fbrowser%408.48.0 correctly diagnoses the issue here: when imported from ESM, |
@jfirebaugh dang this looks promising. Thank you so much! I'll investigate further. |
Relates to PR #3077
Package + Version
@sentry/browser
@sentry/node
raven-js
raven-node
(raven for node)Version:
Description
Sentry must be imported using
import * as Sentry
instead ofimport Sentry
in order to work.With the esModuleInterop compiler option enabled, TypeScript does not complain about
import Sentry
.(With the option off, TS recognizes that the module does not have a default import and forbids
import Sentry
)This appears to be because the Sentry index.js module declares
__esModule: true
but does not actually have a value for the default export:Can the library be updated so the default import works as TypeScript thinks it does?
This is only an issue when the esModuleInterop setting is on, but it's a pretty valuable setting and a dangerous mistake
for the developer.
Thanks!
The text was updated successfully, but these errors were encountered: