.babelrc 490 B

123456789101112131415161718192021222324
  1. {
  2. "presets": [
  3. [
  4. "@babel/preset-env",
  5. {
  6. "useBuiltIns": "entry",
  7. "corejs": 3
  8. }
  9. ],
  10. "@babel/preset-typescript",
  11. "@babel/react"
  12. ],
  13. "plugins": [
  14. "@babel/proposal-class-properties",
  15. "@babel/proposal-object-rest-spread",
  16. [
  17. "import",
  18. {
  19. "libraryName": "antd",
  20. "style": "css"
  21. }
  22. ]
  23. ]
  24. }