You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

.babelrc 342 B

3 years ago
123456789101112131415161718192021222324
  1. {
  2. "env": {
  3. "test": {
  4. "presets": [
  5. "env",
  6. "react",
  7. "stage-0"
  8. ]
  9. },
  10. "development": {
  11. "presets": [
  12. [
  13. "env",
  14. {
  15. "modules": false
  16. }
  17. ],
  18. "react",
  19. "stage-0"
  20. ]
  21. }
  22. },
  23. "plugins": ["transform-flow-strip-types"]
  24. }