You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
499 B

  1. {
  2. "presets": [
  3. "es2015",
  4. "react",
  5. [
  6. "env",
  7. {
  8. "loose": true,
  9. "modules": false
  10. }
  11. ]
  12. ],
  13. "plugins": [
  14. "transform-object-rest-spread",
  15. [
  16. "react-intl",
  17. {
  18. "messagesDir": "./build/messages"
  19. }
  20. ]
  21. ],
  22. "env": {
  23. "development": {
  24. "plugins": [
  25. "transform-react-jsx-source",
  26. "transform-react-jsx-self"
  27. ]
  28. },
  29. "production": {
  30. "plugins": [
  31. "lodash"
  32. ]
  33. }
  34. }
  35. }