.babelrc 609 B

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