.babelrc 475 B

12345678910111213141516171819202122232425
  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. ["import", {
  13. "libraryName": "vant",
  14. "libraryDirectory": "es",
  15. "style": true
  16. },'vant'],
  17. [
  18. "component",
  19. {
  20. "libraryName": "element-ui",
  21. "styleLibraryName": "theme-chalk"
  22. }
  23. ],
  24. "transform-vue-jsx", "transform-runtime"]
  25. }