mirror of
https://github.com/status-im/status-react.git
synced 2025-01-10 19:16:59 +00:00
24 lines
510 B
JavaScript
24 lines
510 B
JavaScript
|
module.exports = {
|
||
|
|
||
|
"presets": [
|
||
|
"module:metro-react-native-babel-preset"
|
||
|
],
|
||
|
"plugins": [
|
||
|
"react-native-reanimated/plugin"
|
||
|
],
|
||
|
"env": {
|
||
|
"test": {
|
||
|
"presets": [
|
||
|
'@babel/preset-react',
|
||
|
[
|
||
|
'@babel/preset-env',
|
||
|
{
|
||
|
targets: {
|
||
|
node: '14',
|
||
|
},
|
||
|
},
|
||
|
],
|
||
|
],
|
||
|
}
|
||
|
}
|
||
|
}
|