Exploring the latest rc-release of TypeScript in order to utilize the async/await functionality for ES5.
Encountering an odd behavior with the generated __awaiter and __generator methods, as it appears they are being created for each individual ts file when the outFile compiler option is not utilized.
Is there a method to generate just one instance of the __awaiter and __generator methods without relying on outFile? I am hesitant to use the outFile flag because I currently depend on webpack for bundling, which is necessary for importing HTML template files.