Why are you compiling the code and at the same time have main set to uncompiled version?
That means that users are gonna use an uncompiled version if they import directly from the module.
Also, when using a compiled version, don't include original sources in released package to make the package smaller.
Why are you compiling the code and at the same time have
mainset to uncompiled version?country-currency-map/package.json
Line 5 in b08a150
That means that users are gonna use an uncompiled version if they import directly from the module.
Also, when using a compiled version, don't include original sources in released package to make the package smaller.