hamstr/babel.config.js
2023-01-07 03:10:26 +00:00

15 lines
263 B
JavaScript

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