-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathbabel.config.js
49 lines (49 loc) · 1.25 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
module.exports = {
env: {
production: {
plugins: ['react-native-paper/babel'],
},
},
presets: ['module:metro-react-native-babel-preset'],
plugins: [
'module:react-native-dotenv',
['react-native-worklets-core/plugin'],
['@babel/plugin-proposal-numeric-separator'],
[
'module-resolver',
{
root: ['./src'],
extensions: [
'.ios.ts',
'.android.ts',
'.ts',
'.ios.tsx',
'.android.tsx',
'.tsx',
'.jsx',
'.js',
'.json',
],
alias: {
assets: './src/assets',
components: './src/components',
config: './src/config',
constants: './src/constants',
contexts: './src/contexts',
hooks: './src/hooks',
lib: './src/lib',
modals: './src/modals',
native: './src/native',
navigation: './src/navigation',
'@recoil': './src/recoil',
screens: './src/screens',
services: './src/services',
sources: './src/sources',
types: './src/types',
walletconnect: './src/walletconnect',
},
},
],
['react-native-reanimated/plugin', { globals: ['__scanCodes'] }],
],
};