.babelrc 596 B

123456789101112131415161718192021
  1. // Source:
  2. // https://github.com/gaearon/react-transform-hmr/tree/f22f9a938ed295e0c5ebe756d73fdae4c3a6fdef
  3. {
  4. "presets": ["react", "es2015"],
  5. "env": {
  6. // only enable it when process.env.NODE_ENV is 'development' or undefined
  7. "development": {
  8. "plugins": [
  9. ["react-transform", {
  10. "transforms": [{
  11. "transform": "react-transform-hmr",
  12. // if you use React Native, pass "react-native" instead:
  13. "imports": ["react"],
  14. // this is important for Webpack HMR:
  15. "locals": ["module"]
  16. }]
  17. }]
  18. ]
  19. }
  20. }
  21. }