.babelrc 326 B

12345678910
  1. {
  2. "presets": ["@babel/preset-env", "@babel/preset-react"],
  3. "plugins": [
  4. "@babel/plugin-syntax-jsx",
  5. ["@babel/plugin-proposal-decorators", { "legacy": true }],
  6. "@babel/plugin-proposal-class-properties",
  7. // "@babel/plugin-transform-react-jsx",
  8. // "@babel/plugin-transform-runtime"
  9. ]
  10. }