forked from rainbow-me/rainbow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
babel.config.js
74 lines (67 loc) · 1.65 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
const fs = require('fs');
const envLine = fs
.readFileSync('./.env', 'utf8')
.split('\n')
.find(l => l.startsWith('SCRIPT_NM='));
const data = envLine && envLine.slice(10);
function getAliasesFromTsConfig() {
const tsConfig = require('./tsconfig.json');
const paths = tsConfig.compilerOptions.paths;
let alias = {};
Object.keys(paths).forEach(key => {
alias[key] = `./${paths[key][0]}`;
});
return alias;
}
module.exports = function (api) {
api.cache(true);
const plugins = [
...(data ? [data] : []),
[
'module-resolver',
{
alias: getAliasesFromTsConfig(),
extensions: ['.ios.js', '.android.js', '.js', '.ts', '.tsx', '.json'],
root: ['./src'],
},
],
'babel-plugin-styled-components',
'date-fns',
'graphql-tag',
['lodash', { id: ['lodash', 'recompact'] }],
'react-native-reanimated/plugin',
[
'module:react-native-dotenv',
{
allowUndefined: true,
moduleName: 'react-native-dotenv',
},
],
];
const presets = ['module:metro-react-native-babel-preset'];
return {
env: {
development: {
plugins: [
...plugins,
[
'transform-remove-console',
{ exclude: ['disableYellowBox', 'error', 'info', 'log'] },
],
],
presets: presets,
},
production: {
plugins: [
...plugins,
'@babel/plugin-transform-runtime',
'@babel/plugin-transform-react-inline-elements',
['transform-remove-console', { exclude: ['error'] }],
],
presets: presets,
},
},
plugins,
presets,
};
};