.babelrc 246 B

1234567891011121314151617
  1. {
  2. "presets": [
  3. [
  4. "airbnb",
  5. {
  6. "targets": {
  7. "node": 4
  8. },
  9. "transformRuntime": false
  10. }
  11. ]
  12. ],
  13. "plugins": [
  14. "@babel/plugin-transform-flow-strip-types",
  15. "add-module-exports"
  16. ]
  17. }