.babelrc.json 206 B

123456789101112131415
  1. {
  2. "presets": [
  3. "@babel/preset-react"
  4. ],
  5. "plugins": [
  6. "@babel/plugin-syntax-dynamic-import",
  7. [
  8. "@babel/plugin-proposal-decorators",
  9. {
  10. "legacy": true
  11. }
  12. ]
  13. ]
  14. }