.babelrc 326 B

123456789101112131415161718192021
  1. {
  2. "presets": [
  3. "@babel/env"
  4. ],
  5. "plugins": [
  6. ["@babel/transform-for-of", { "loose": true }],
  7. ["@babel/plugin-syntax-import-assertions"]
  8. ],
  9. "env": {
  10. "es6": {
  11. "presets": [
  12. ["@babel/env", { "modules": false }]
  13. ]
  14. },
  15. "nyc": {
  16. "plugins": [
  17. "babel-plugin-istanbul"
  18. ]
  19. }
  20. }
  21. }