mirror of
https://github.com/minibits-cash/minibits_wallet.git
synced 2026-08-10 16:43:19 +00:00
19 lines
486 B
JavaScript
19 lines
486 B
JavaScript
module.exports = {
|
|
presets: ['module:@react-native/babel-preset'],
|
|
plugins: [
|
|
[
|
|
'module-resolver',
|
|
{
|
|
alias: {
|
|
'crypto': 'react-native-quick-crypto',
|
|
'stream': 'stream-browserify',
|
|
'buffer': '@craftzdog/react-native-buffer',
|
|
},
|
|
},
|
|
],
|
|
'module:react-native-dotenv',
|
|
'react-native-reanimated/plugin',
|
|
'@babel/plugin-proposal-export-namespace-from'
|
|
],
|
|
};
|