.babelrc 231 B

12345678910111213141516
  1. {
  2. "presets": [
  3. "@babel/preset-env",
  4. "@babel/preset-react"
  5. ],
  6. "plugins": [
  7. "transform-class-properties",
  8. "@babel/plugin-transform-runtime",
  9. [
  10. "@babel/plugin-proposal-decorators",
  11. {
  12. "legacy": true
  13. }
  14. ]
  15. ]
  16. }