mirror of
https://github.com/tenrok/vue-meta.git
synced 2026-05-17 05:49:37 +03:00
18 lines
286 B
JavaScript
18 lines
286 B
JavaScript
module.exports = {
|
|
env: {
|
|
test: {
|
|
plugins: [
|
|
'@babel/plugin-syntax-dynamic-import',
|
|
'dynamic-import-node'
|
|
],
|
|
presets: [
|
|
[ '@babel/preset-env', {
|
|
targets: {
|
|
node: 'current'
|
|
}
|
|
}]
|
|
],
|
|
}
|
|
}
|
|
}
|