babel.config.json 347 B

123456789101112131415
  1. {
  2. "presets": [
  3. [
  4. "@babel/env",
  5. {
  6. "useBuiltIns": "usage",
  7. // This version must be aligned with the `core-js` version in `package.json`
  8. "corejs": { "version": 3.6 }
  9. }
  10. ],
  11. ["@babel/react", { "runtime": "automatic" }],
  12. "@babel/typescript"
  13. ],
  14. "plugins": ["angularjs-annotate", "macros"]
  15. }