Skip to content

Instantly share code, notes, and snippets.

@garth
Created December 30, 2015 23:07
Show Gist options
  • Save garth/232473c58e72afb2e641 to your computer and use it in GitHub Desktop.
Save garth/232473c58e72afb2e641 to your computer and use it in GitHub Desktop.
babel v6 setup
{
"presets": ["react", "es2015", "stage-1"],
"plugins": ["transform-decorators-legacy"],
"env": {
"development": {
"plugins": [
["react-transform", {
"transforms": [{
"transform": "react-transform-hmr",
"imports": ["react"],
"locals": ["module"]
}]
}]
]
}
}
}
{
"devDependencies": {
"babel": "^6.3.26",
"babel-cli": "^6.3.17",
"babel-core": "^6.3.26",
"babel-eslint": "^5.0.0-beta6",
"babel-loader": "^6.2.0",
"babel-plugin-react-transform": "^2.0.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-1": "^6.3.13",
"react-transform-hmr": "^1.0.0"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment