.babelrc 631 B

12345678910111213141516171819
  1. {
  2. "ignore": [
  3. "node_modules/*"
  4. ],
  5. "plugins": [
  6. "transform-es2015-modules-commonjs",
  7. "transform-es2015-parameters",
  8. "babel-plugin-transform-es2015-block-scoping",
  9. "babel-plugin-check-es2015-constants",
  10. "babel-plugin-transform-es2015-classes",
  11. "babel-plugin-transform-es2015-template-literals",
  12. "babel-plugin-transform-es2015-arrow-functions",
  13. "babel-plugin-transform-es2015-destructuring",
  14. "babel-plugin-transform-es2015-for-of",
  15. "babel-plugin-transform-object-rest-spread",
  16. "babel-plugin-transform-es2015-shorthand-properties",
  17. "babel-plugin-transform-object-assign"
  18. ]
  19. }