mirror of
https://github.com/status-im/status-react.git
synced 2025-01-09 18:46:19 +00:00
c80992b6bf
* Update prettier config for the project. * Add prettier to make lint-fix.
20 lines
355 B
JavaScript
20 lines
355 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',
|
|
},
|
|
},
|
|
],
|
|
],
|
|
},
|
|
},
|
|
};
|