mirror of
https://github.com/henrywhitaker3/Speedtest-Tracker.git
synced 2026-01-03 11:34:51 +01:00
29 lines
497 B
JavaScript
Vendored
29 lines
497 B
JavaScript
Vendored
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' }]
|
|
]
|
|
}
|
|
}
|
|
};
|