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
We need to run either of those and then fix the linkage of modules manually. We don't need to use import/export, but it will help to reduce excess deps in Webpack.
Why
Webpack build fails because of coffee files Webpack #714.
Helps TypeScript
Side-Note
There is also bulk-decaffeinate that automatically searches for connections, but it doesn't work well on Windows (I couldn't get it to work).
I will test on my Linux machine to see if it works there
Method
Decaffeination can be done easily using:
or without automatic import/export
or without loose modifications (the safest but worst looking)
We need to run either of those and then fix the linkage of modules manually. We don't need to use
import/export, but it will help to reduce excess deps in Webpack.Why
Side-Note
There is also bulk-decaffeinate that automatically searches for connections, but it doesn't work well on Windows (I couldn't get it to work).
https://github.com/decaffeinate/bulk-decaffeinate
decaffeinate/bulk-decaffeinate#265