openflexure-microscope-server/babel.config.js
2019-04-25 14:35:52 +01:00

9 lines
No EOL
209 B
JavaScript

module.exports = {
plugins: [
'@babel/plugin-syntax-dynamic-import'
],
presets: [
process.env.VUE_PLATFORM === 'web' ? '@vue/app' : {},
['@babel/env', { targets: { esmodules: true } }]
]
}