Skip to content

Instantly share code, notes, and snippets.

@subfuzion
Created January 20, 2016 20:13
Show Gist options
  • Save subfuzion/511810d69cdf24fa6af4 to your computer and use it in GitHub Desktop.
Save subfuzion/511810d69cdf24fa6af4 to your computer and use it in GitHub Desktop.
Babel configuration
{
"presets": ["es2015"],
"plugins": ["syntax-async-functions","transform-regenerator"]
}
require('babel-polyfill');
{
"name": "node-app",
"version": "1.0.0",
"scripts": {
"watch": "babel --watch src -d dist --source-maps",
},
"dependencies": {
"babel-polyfill": "^6.3.14"
},
"devDependencies": {
"babel": "^6.3.26",
"babel-cli": "^6.4.5",
"babel-plugin-syntax-async-functions": "^6.3.13",
"babel-preset-es2015": "^6.3.13",
"babel-runtime": "^6.3.19"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment