.babelrc 340 B

1234567891011121314151617181920212223
  1. {
  2. "presets": [
  3. [
  4. "env",
  5. {
  6. "loose": true,
  7. "modules": false
  8. }
  9. ],
  10. "react"
  11. ],
  12. "plugins": [
  13. "react-hot-loader/babel",
  14. "transform-runtime",
  15. "transform-object-rest-spread",
  16. "lodash"
  17. ],
  18. "env": {
  19. "test": {
  20. "plugins": ["transform-es2015-modules-commonjs"]
  21. }
  22. }
  23. }