.babelrc 351 B

123456789101112131415161718
  1. {
  2. "presets": [["es2015", { "modules": false }]],
  3. "plugins": [
  4. [
  5. "component",
  6. {
  7. "libraryName": "element-ui",
  8. "styleLibraryName": "theme-chalk",
  9. "styleLibrary": {
  10. "name":"theme-chalk",
  11. "base":true,
  12. "path":"[module]/index.css",
  13. "mixin":true
  14. }
  15. }
  16. ]
  17. ]
  18. }