Is there a way to pick which build of a dependency to use?
I'm using node to build my webapp. One of the packages I depend on is tippy.js. When I import it with
npm i tippy.js
npm i tippy.js
, it puts all these files in my node_modules directory (see screenshot).
I'm not sure why, but when I build my project it ends up using one of the files meant for node. How do I get my build to use the version meant for frontend instead (I think that would be any version with
umd
umd
in its name)?
My project is written in typescript, I build with
npm
npm
and
rollup
rollup
. It would help me a lot just to know which of these tools I need to learn more of in order to find the solution.