1
1
mirror of https://github.com/tauri-apps/tauri.git synced 2024-12-18 08:02:13 +03:00
tauri/tooling/api/babel.config.js
2021-04-12 01:59:25 -03:00

15 lines
209 B
JavaScript

module.exports = {
presets: [
[
'@babel/preset-env',
{
targets: {
node: 'current'
},
modules: 'commonjs'
}
],
'@babel/preset-typescript'
]
}