Skip to content

Instantly share code, notes, and snippets.

@sandalsoft
Last active April 6, 2018 03:29
Show Gist options
  • Select an option

  • Save sandalsoft/1621509c1dd9792c4c9118f29de56db5 to your computer and use it in GitHub Desktop.

Select an option

Save sandalsoft/1621509c1dd9792c4c9118f29de56db5 to your computer and use it in GitHub Desktop.
babelrc
{
"presets": [
[
"env",
{
"targets": {
"node": "current"
}
}
]
],
"plugins": [
[
"module-resolver",
{
"root": ["./"],
"alias": {
"@util": "./src/util",
"@config": "./config"
}
}
],
"transform-es2015-spread",
"transform-object-rest-spread",
"transform-async-to-generator",
"transform-es2015-modules-commonjs"
],
"sourceMaps": "both"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment