mirror of
https://github.com/aelve/guide.git
synced 2024-11-23 04:07:14 +03:00
9e4146b5bc
* Vuetify updated * Correct component creation in dialog mixins * Vuetify 2.0 migration * Conflict dialog content style fixed * Removed duplicate attribute
16 lines
336 B
JavaScript
16 lines
336 B
JavaScript
module.exports = {
|
|
presets: [
|
|
['@babel/env', {
|
|
targets: {
|
|
browsers: ['last 3 versions', '> 2%', 'ie >= 10', 'Firefox >= 30', 'Chrome >= 30']
|
|
},
|
|
modules: 'commonjs',
|
|
useBuiltIns: 'usage'
|
|
}]
|
|
],
|
|
plugins: [
|
|
'@babel/plugin-transform-runtime',
|
|
'@babel/plugin-syntax-dynamic-import'
|
|
]
|
|
}
|