Are there any ways to program using ES6 modules and compile everything down to one file? I guess you treat ES6 modules as external modules and therefore not doing any bundling.
I have tried using --out option to compile everything down to one file and using ES6 syntax. But so far, it seems like TypeScript doesn't support it.
I'm just curious how you expect people ot use ES6 import syntax on the browser? I was hoping something like browserify's bundling would happened.
Are there any ways to program using ES6 modules and compile everything down to one file? I guess you treat ES6 modules as external modules and therefore not doing any bundling.
I have tried using
--outoption to compile everything down to one file and using ES6 syntax. But so far, it seems like TypeScript doesn't support it.I'm just curious how you expect people ot use ES6 import syntax on the browser? I was hoping something like browserify's bundling would happened.