Skip to content

Instantly share code, notes, and snippets.

@tgoldenberg
Last active March 19, 2018 15:37
Show Gist options
  • Select an option

  • Save tgoldenberg/863ebfd831feb861463da797e1ae8ae5 to your computer and use it in GitHub Desktop.

Select an option

Save tgoldenberg/863ebfd831feb861463da797e1ae8ae5 to your computer and use it in GitHub Desktop.
Sample Babel configuration
{
"presets": ["stage-2"],
"plugins": [
["transform-async-to-generator"],
["module-resolver", {
"root": ["."],
"alias": {
"classes": "./src/classes",
"store": "./src/store",
"utils": "./src/utils",
"models": "./src/models",
"mining": "./src/mining",
"db": "./src/db",
"__mocks__": "./__mocks__"
},
"cwd": "babelrc"
}],
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment