.babelrc 195 B

123456789101112131415
  1. {
  2. "plugins": [
  3. "@babel/plugin-transform-modules-umd"
  4. ],
  5. "presets": [
  6. [
  7. "@babel/preset-env",
  8. {
  9. "targets": {
  10. "chrome": "30"
  11. }
  12. }
  13. ]
  14. ]
  15. }