.babelrc 588 B

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "presets": [
  3. [
  4. "env",
  5. {
  6. "modules": false,
  7. "targets": {
  8. "browsers": [
  9. "> 1%",
  10. "last 2 versions",
  11. "not ie <= 8"
  12. ]
  13. }
  14. }
  15. ],
  16. "stage-2"
  17. ],
  18. "plugins": [
  19. "transform-vue-jsx",
  20. "transform-runtime",
  21. [
  22. "import",
  23. {
  24. "libraryName": "ant-design-vue",
  25. "libraryDirectory": "es",
  26. "style": "css"
  27. }
  28. ],
  29. [
  30. "component",
  31. {
  32. "libraryName": "element-ui",
  33. "styleLibraryName": "theme-chalk"
  34. }
  35. ]
  36. ]
  37. }