You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
497 B
29 lines
497 B
module.exports = {
|
|
presets: [
|
|
[
|
|
'@babel/env',
|
|
{
|
|
targets: {
|
|
node: 'current'
|
|
}
|
|
}
|
|
],
|
|
require.resolve('./local-preset')
|
|
],
|
|
plugins: [
|
|
require.resolve('./local-plugin'),
|
|
'@babel/plugin-proposal-object-rest-spread',
|
|
['module:fast-async', {
|
|
runtimePattern: null,
|
|
useRuntimeModule: false
|
|
}]
|
|
],
|
|
env: {
|
|
test: {
|
|
plugins: [
|
|
[require.resolve('./local-plugin'), { foo: 'bar' }]
|
|
]
|
|
}
|
|
}
|
|
};
|