This repository has been archived on 2023-10-03. You can view files and clone it, but cannot push or open issues or pull requests.
ltt-mapmaker/babel.config.js
2021-09-18 11:50:15 +02:00

16 lines
244 B
JavaScript

module.exports = api => {
return {
presets: [
[
'@quasar/babel-preset-app',
api.caller(caller => caller && caller.target === 'node')
? { targets: { node: 'current' } }
: {}
]
]
}
}