.babelrc 295 B

12345678910111213141516171819202122
  1. {
  2. "presets": [
  3. [
  4. "@babel/env",
  5. {
  6. "targets": {
  7. "chrome": "58",
  8. "ie": "11"
  9. }
  10. }
  11. ]
  12. ],
  13. "plugins": [
  14. [
  15. "component",
  16. {
  17. "libraryName": "element-ui",
  18. "styleLibraryName": "theme-chalk"
  19. }
  20. ]
  21. ]
  22. }