mirror of
https://github.com/Istador/smoo.it
synced 2025-10-05 23:42:42 +02:00
I'd rather use `babel-plugin-proxy` instead of `proxy-polyfill`, but it doesn't seem to work with babel 7 currently. https://github.com/krzkaczor/babel-plugin-proxy/issues/10
20 lines
323 B
JavaScript
20 lines
323 B
JavaScript
module.exports = {
|
|
compact : true,
|
|
plugins : [
|
|
'transform-unicode-regexp-runtime',
|
|
],
|
|
presets : [
|
|
[
|
|
'@vue/cli-plugin-babel/preset',
|
|
{
|
|
useBuiltIns : 'usage',
|
|
targets : {
|
|
ie : 11,
|
|
chrome : 60,
|
|
firefox : 56,
|
|
},
|
|
},
|
|
],
|
|
],
|
|
}
|