.babelrc 295 B

1234567891011121314151617
  1. {
  2. "presets": [
  3. [
  4. "@babel/preset-env",
  5. {
  6. "modules": false
  7. }
  8. ]
  9. ],
  10. "plugins": [
  11. "@babel/plugin-syntax-dynamic-import",
  12. "@babel/plugin-syntax-import-meta",
  13. "@babel/plugin-proposal-class-properties",
  14. "@babel/plugin-proposal-json-strings"
  15. ]
  16. }