babel.config.js 354 B

1234567891011121314151617181920
  1. module.exports = {
  2. presets: [
  3. [
  4. '@vue/app',
  5. {
  6. useBuiltIns: 'entry',
  7. corejs: 3,
  8. targets: {
  9. ios: "8",
  10. android: "4",
  11. chrome: "58",
  12. },
  13. }
  14. ]
  15. ],
  16. plugins: [
  17. "@babel/plugin-transform-runtime",
  18. "@babel/plugin-proposal-optional-chaining",
  19. ]
  20. }