.babelrc 586 B

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "presets": [
  3. "react",
  4. [
  5. "env",
  6. {
  7. "loose": true,
  8. "targets": {
  9. "browsers": ["last 2 versions", "IE >= 11", "iOS >= 9"]
  10. }
  11. }
  12. ]
  13. ],
  14. "plugins": [
  15. "syntax-dynamic-import",
  16. "transform-object-rest-spread",
  17. [
  18. "react-intl",
  19. {
  20. "messagesDir": "./build/messages"
  21. }
  22. ]
  23. ],
  24. "env": {
  25. "development": {
  26. "plugins": [
  27. "transform-react-jsx-source",
  28. "transform-react-jsx-self"
  29. ]
  30. },
  31. "production": {
  32. "plugins": [
  33. "lodash"
  34. ]
  35. }
  36. }
  37. }