Email or username:

Password:

Forgot your password?
Andrew Tropin

Trying to load js code with bigint literals in typescript project, most horrible and dissatisfying programming experience I've had in years. I already spent a few days debugging it and thought that I localized the issue, but we are still not here. Updating javascript parser in transitive dependencies is not enough.

#javascript #typescript

3 comments
Andrew Tropin

The problems is in the hardcoded javascript standard version in call to parser in one of the bundler plugins, which in case a transitive dependency of another package, which provides dev tooling.

github.com/calvinmetcalf/rollu

Jelle Licht

@abcdw not a solution, but patch-package may allow you to work around the issue for now.

Andrew Tropin

@Jlicht Thank you for the link, yep, probably will use it. I just manually monkeypatched a file in node_modules for now :)

Go Up