How to make using tsify with the AMD module system result in a bundle file, not in separate files or a file that uses the not-found `define`?
问题 I do not care which module system I use if I am able to use the ES6 TypeScript import/export syntax. Why does AMD put just main.ts in the bundle.js file, while UMD puts all the needed modules in it? How can I use AMD (which I understood that is good for the browsers) so that the bundle.js file contains all the needed code? I just change between AMD and UMD and the file size changes accordingly: AMD: 1879 bytes written to js/bundle.js (0.06 seconds) at 14:57:28 UMD: 164682 bytes written to js