babel.config.js 552 B

1234567891011121314151617181920212223242526
  1. module.exports = {
  2. 'presets': [
  3. ['@vue/app', {
  4. useBuiltIns: 'entry'
  5. }]
  6. ],
  7. 'plugins': [
  8. // [
  9. // 'import',
  10. // {
  11. // 'libraryName': 'ant-design-vue',
  12. // 'libraryDirectory': 'es',
  13. // 'style': true
  14. // }
  15. // ],
  16. '@babel/plugin-proposal-optional-chaining', // 可选链式语法
  17. '@babel/plugin-proposal-nullish-coalescing-operator', // 双问号语法
  18. [
  19. 'component',
  20. {
  21. 'libraryName': 'element-ui',
  22. 'styleLibraryName': 'theme-chalk'
  23. }
  24. ]
  25. ]
  26. }