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
However, it might be nice for this to follow the normal webpacker config setting conventions instead. It's especially useful to turn off when using typescript with transpileOnly: true. When doing this, you'll get warnings along the lines of export 'AnInterface' was not found in './f1' which get turned into errors if strictExportPresence is true.
From what I can tell
module.strictExportPresence
is sort-of hardcoded totrue
here:webpacker/package/environments/base.js
Line 155 in b041a1d
It's easy enough to turn of by manually setting it in the per-environment configs like this:
However, it might be nice for this to follow the normal webpacker config setting conventions instead. It's especially useful to turn off when using typescript with
transpileOnly: true
. When doing this, you'll get warnings along the lines ofexport 'AnInterface' was not found in './f1'
which get turned into errors ifstrictExportPresence
is true.see TypeStrong/ts-loader#653
The text was updated successfully, but these errors were encountered: