forked from XRPL-Labs/Xaman-App
-
Notifications
You must be signed in to change notification settings - Fork 0
/
babel.config.js
40 lines (40 loc) · 1.33 KB
/
babel.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
module.exports = {
presets: ['module:metro-react-native-babel-preset'],
plugins: [
[
'rewrite-require',
{
aliases: {
fs: 'node-libs-browser/mock/empty',
path: 'path-browserify',
crypto: 'crypto-browserify',
net: 'node-libs-browser/mock/net',
http: 'stream-http',
https: 'https-browserify',
tls: 'node-libs-browser/mock/tls',
zlib: 'browserify-zlib',
vm: 'vm-browserify',
stream: 'stream-browserify',
_stream_duplex: 'readable-stream/duplex',
_stream_passthrough: 'readable-stream/passthrough',
_stream_readable: 'readable-stream/readable',
_stream_transform: 'readable-stream/transform',
_stream_writable: 'readable-stream/writable',
},
throwForNonStringLiteral: true,
},
],
[
'@babel/plugin-transform-runtime',
{
helpers: true,
regenerator: false,
},
],
],
env: {
production: {
plugins: ['transform-remove-console'],
},
},
};