.babelrc 822 B

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "presets": [
  3. ["env", {
  4. "loose": true,
  5. "debug": false,
  6. "useBuiltIns": true,
  7. "targets": {
  8. "browsers": [
  9. "> 1%",
  10. "last 2 versions",
  11. "ie >= 10",
  12. "edge >= 12",
  13. "firefox >= 28",
  14. "chrome >= 29",
  15. "opera >= 17"
  16. ]
  17. },
  18. "production": {
  19. "plugins": ["transform-remove-console"]
  20. }
  21. }]
  22. ],
  23. "plugins": [
  24. [ "transform-runtime", {
  25. "helpers": false,
  26. "polyfill": false,
  27. "regenerator": true } ],
  28. [ "transform-class-properties", { "spec": true } ],
  29. [ "transform-object-rest-spread", { "useBuiltIns": true } ],
  30. [ "transform-vue-jsx" ],
  31. [ "syntax-dynamic-import" ]
  32. ],
  33. "comments": false
  34. }