Had the same issue and fixed it by changing the JS packages loading order.
Check the order in which the packages you need are being called and load them in an appropriate order.
In my specific case (not using module bundler) I needed to load Redux
, then Redux Thunk
, then React Redux
. Loading React Redux
before Redux Thunk
would give me exports is not defined
.