-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbabel.config.js
30 lines (30 loc) · 902 Bytes
/
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
module.exports = {
presets: ['module:metro-react-native-babel-preset'],
plugins: [
[
'module-resolver',
{
root: ['./src'],
extensions: ['.ts', '.tsx', '.jsx', '.js', '.json'],
alias: {
'@presentational': './src/presentational',
'@config': './src/config',
'@store': './src/store',
'@styles': './src/styles',
'@hooks': './src/hooks',
'@components': './src/components',
'@routes': './src/routes',
'@assets': './src/assets',
'@i18n': './src/i18n',
'@database': './src/database',
'@utils': './src/utils',
'@__mocks__': './__mocks__',
'@__tests__': './__tests__',
},
},
],
['module:react-native-dotenv'],
['@babel/plugin-proposal-decorators', { legacy: true }],
'react-native-reanimated/plugin',
],
};