-
Notifications
You must be signed in to change notification settings - Fork 48
/
babel.config.js
58 lines (58 loc) · 2.04 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
module.exports = {
presets: ['module:@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,
},
],
[
'module-resolver',
{
root: ['./src'],
extensions: ['.ios.js', '.android.js', '.js', '.ts', '.tsx', '.json'],
alias: {
'@components': ['./src/components'],
'@common': ['./src/common'],
'@locale': ['./src/locale'],
'@screens': ['./src/screens'],
'@services': ['./src/services'],
'@store': ['./src/store'],
'@theme': ['./src/theme'],
},
},
],
['@babel/plugin-transform-flow-strip-types', { allowDeclareFields: true }],
['@babel/plugin-transform-class-static-block'],
],
env: {
production: {
plugins: ['transform-remove-console'],
},
},
};