You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Yeah, this repro example was something I put up related to this TypeScript issue. I see why it's failing, but I'm more concerned with why it's not working with esModuleInterop. Check that linked issue for more details (and if you have any ideas, I'm all ears :)
The main issue with ESM and nodenext/node16 mode is TypeScript refusing to add .js extensions to the generated import statements in the compiled files.
Man this issue is causing soooo muuuuch paaaaiiiinnn for the JS/TS community haha! I see why this is a TS issue now, it really should be "smart" enough to figure out in spite of long.js doing silly things.
Things are going great! Been in Seattle for a while, at AWS now doing Rust SDK examples & guides. It's a change of pace but super interesting! How are you? Buf seems like a super interesting project
Long uses a non-standard
export = Long;
AMD default export. This should beexport default Long;
The text was updated successfully, but these errors were encountered: