The code powering m.abunchtell.com https://m.abunchtell.com
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.
 
 
 
 

38 lines
586 B

  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. }