I am working on a project and I would like to combine everything into a single mjs file that can be distributed. I at first thought about Webpack but it seems to output to ES5 (However, I did get it to work) so I had to run without --experimental-modules
. I also tried rollup, however, it again converted it back to es5.
Is there a way to have it basically just create one big mjs file? Should I just concat them all?