-
Notifications
You must be signed in to change notification settings - Fork 211
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
[BUG] Error: Cannot find module 'tslib' #345
Comments
Minimal Working Example Failure: https://github.com/LukasHeimann/fast-csv-bug --> just run |
@LukasHeimann I met the same issue, and your solution works for me 👍thanks |
Also encountered this issue all of a sudden. Added tslib, but is there a way around this? |
@LukasHeimann Thanks, your solution work for me. |
fix(): Fix for #345 remove revert to old tsconfig.build
@LukasHeimann thank you for the bug report! I have published a new version I tested this out with a local repo and was able to run as expected. Let me know if you run into any more issues. |
@doug-martin Stuff like this happens... Thank you for fixing this so fast! :) |
I continue to see this issue when running my app in GAE. I've even tried to add |
@troyschneringer what version is listed in your package-lock.json? |
dependency from
relevant entries from
Stack Trace from GAE
|
Looks like I may have been running into a caching issue with GAE and node. Running
solved the issue for me on version |
Describe the bug
Hi! First of all: Thank you for providing this great library.
With the update to the latest patch version of fast-csv, I started to get some error messages when trying to import the library:
I assume, this is down to the following change in your tsconfig: 6668006#diff-17d19956339a21e53394cda05f5a6cc3R9
You added
"importHelpers": true
which will (as I found out)Import emit helpers from 'tslib'
. Yet, tslib is not defined as a dependency, so I assume this compiler option emits some code that fails at runtime if the dependency is not present.Parsing or Formatting?
To Reproduce
Expected behavior
Importing the library should be possible without having to require tslib myself explicitly.
Desktop (please complete the following information):
(But also my Jenkins, which runs on Linux, but I don't know exact version there)
The text was updated successfully, but these errors were encountered: