Skip to content

Instantly share code, notes, and snippets.

@ajcrites
Created March 10, 2016 01:27
Show Gist options
  • Save ajcrites/e06764ffe889e003e41f to your computer and use it in GitHub Desktop.
Save ajcrites/e06764ffe889e003e41f to your computer and use it in GitHub Desktop.
module.exports = {
entry: "./src/index.js",
output: {
path: __dirname + "/lib",
filename: "index.js",
},
preLoaders: [{
test: /\.js$/,
loader: 'babel',
query: {
"presets": ["es2015", "stage-0"],
"plugins": ["transform-runtime", "transform-regenerator", "syntax-async-functions", "transform-async-to-generator"]
}
}],
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment