mirror of
https://github.com/embarklabs/web3.js.git
synced 2026-08-30 22:21:10 +00:00
13 lines
358 B
JavaScript
13 lines
358 B
JavaScript
module.exports = require('babel-jest').createTransformer({
|
|
env: {
|
|
test: {
|
|
presets: [['@babel/env']],
|
|
plugins: [
|
|
'@babel/plugin-proposal-export-default-from',
|
|
'@babel/plugin-proposal-export-namespace-from',
|
|
'@babel/plugin-transform-runtime'
|
|
]
|
|
}
|
|
}
|
|
});
|