.babelrc 444 B

123456789101112131415161718192021222324252627
  1. {
  2. "plugins": [
  3. "syntax-dynamic-import",
  4. "react-hot-loader/babel",
  5. [
  6. "transform-runtime",
  7. {
  8. "polyfill": false,
  9. "regenerator": true
  10. }
  11. ],
  12. [
  13. "import",
  14. [
  15. {
  16. "libraryName": "antd",
  17. "style": true
  18. },
  19. {
  20. "libraryName": "antd-mobile",
  21. "style": true
  22. }
  23. ]
  24. ]
  25. ],
  26. "presets": ["es2015", "stage-3", "react"]
  27. }