This commit is contained in:
huoji
2022-08-22 20:15:23 +08:00
parent 3475c90afe
commit 7006b663f3
33 changed files with 9980 additions and 0 deletions

View File

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