.babelrc 440 B

12345678910111213141516171819202122232425262728
  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. "libraryName": "antd",
  16. "style": true
  17. }
  18. ],
  19. [
  20. "import",
  21. {
  22. "libraryName": "antd-mobile",
  23. "style": true
  24. }
  25. ]
  26. ],
  27. "presets": ["es2015", "stage-3", "react"]
  28. }