2020-05-25 22:12:22 +00:00
|
|
|
module.exports = {
|
|
|
|
presets: [
|
|
|
|
'@vue/cli-plugin-babel/preset',
|
|
|
|
],
|
2020-08-01 20:16:33 +00:00
|
|
|
|
|
|
|
// https://github.com/webpack/webpack/issues/10227
|
|
|
|
// TODO: remove these plugins when we get webpack 5
|
|
|
|
plugins: [
|
|
|
|
'@babel/plugin-proposal-optional-chaining',
|
|
|
|
'@babel/plugin-proposal-nullish-coalescing-operator',
|
|
|
|
],
|
2020-05-25 22:12:22 +00:00
|
|
|
};
|