Created
December 30, 2015 23:07
-
-
Save garth/232473c58e72afb2e641 to your computer and use it in GitHub Desktop.
babel v6 setup
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"presets": ["react", "es2015", "stage-1"], | |
"plugins": ["transform-decorators-legacy"], | |
"env": { | |
"development": { | |
"plugins": [ | |
["react-transform", { | |
"transforms": [{ | |
"transform": "react-transform-hmr", | |
"imports": ["react"], | |
"locals": ["module"] | |
}] | |
}] | |
] | |
} | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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