I need a solution to merge multiple modules into a single output file that can be executed by a web browser.
For example:
import externalModule from 'external-module';
console.log(externalModule);
transformed to:
// var externalModule = content of the external module
console.log(externalModule);
Is this achievable with Typescript?