2
0
mirror of https://github.com/tenrok/vue2-datepicker.git synced 2026-06-22 03:40:36 +03:00

fix: ie compatibility

This commit is contained in:
mengxiong10
2019-11-11 17:20:44 +08:00
parent 6060330e23
commit 99a4abdafc
10 changed files with 612 additions and 60 deletions
+26
View File
@@ -0,0 +1,26 @@
module.exports = {
presets: [
[
'@babel/preset-env',
{
modules: false,
},
],
],
plugins: ['transform-vue-jsx', '@babel/plugin-transform-object-assign'],
env: {
test: {
presets: [
[
'@babel/preset-env',
{
targets: {
node: 'current',
},
},
],
],
plugins: ['transform-vue-jsx'],
},
},
};