forked from cerc-io/laconic-wallet
26 lines
557 B
JavaScript
26 lines
557 B
JavaScript
// 'module:@react-native/babel-preset',
|
|
|
|
module.exports = {
|
|
presets: ['module:metro-react-native-babel-preset'],
|
|
plugins: [
|
|
[
|
|
'module-resolver',
|
|
{
|
|
alias: {
|
|
crypto: 'react-native-quick-crypto',
|
|
stream: 'stream-browserify',
|
|
buffer: '@craftzdog/react-native-buffer',
|
|
http: 'http-browserify',
|
|
https: 'https-browserify',
|
|
url: 'react-native-url-polyfill',
|
|
},
|
|
},
|
|
],
|
|
],
|
|
env: {
|
|
production: {
|
|
plugins: ['react-native-paper/babel'],
|
|
},
|
|
},
|
|
};
|