1.0.0 • Published 8 years ago

typescript-awaiter v1.0.0

Weekly downloads
2
License
ISC
Repository
github
Last release
8 years ago

Typescript __awaiter helper exported as node module

In cases, when you want to disable typescript helpers generation with --noEmitHelpers flag, you need to include that helpers manually. Now, you can do that easily!

Example with Webpack

// webpack configuration object

plugins: [
	new webpack.ProvidePlugin({
		__awaiter: 'typescript-awaiter'
	})
],