.babelrc 709 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "presets": [
  3. [
  4. "@babel/preset-env",
  5. {
  6. "targets": {
  7. // 大于相关浏览器版本无需用到 preset-env
  8. "edge": 17,
  9. "firefox": 60,
  10. "chrome": 49,
  11. "safari": 11
  12. },
  13. "corejs": "2", // <---
  14. // 根据代码逻辑中用到的 ES6+语法进行方法的导入,而不是全部导入
  15. "useBuiltIns": "usage"
  16. }
  17. ],
  18. "@babel/preset-react",
  19. "@babel/env",
  20. "@babel/typescript",
  21. "@babel/react"
  22. ],
  23. "plugins": [
  24. [
  25. "import",
  26. {
  27. "libraryName": "antd",
  28. "libraryDirectory": "es",
  29. "style": "css" // `style: true` 会加载 less 文件
  30. }
  31. ]
  32. ]
  33. }