tauri/cli/tauri.js/babel.config.js

15 lines
209 B
JavaScript
Raw Normal View History

2020-03-07 19:40:24 +03:00
module.exports = {
presets: [
[
'@babel/preset-env',
{
targets: {
node: 'current'
},
modules: 'commonjs'
}
],
2020-03-07 19:40:24 +03:00
'@babel/preset-typescript'
]
}