forked from rootstrap/react-native-base
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbabel.config.js
More file actions
26 lines (26 loc) · 706 Bytes
/
babel.config.js
File metadata and controls
26 lines (26 loc) · 706 Bytes
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
module.exports = {
presets: ['module:metro-react-native-babel-preset'],
plugins: [
[
'module-resolver',
{
alias: {
actions: './src/actions',
httpClient: './src/httpClient',
services: './src/services',
components: './src/components',
constants: './src/constants',
screens: './src/screens',
hooks: './src/hooks',
locale: './src/locale',
reducers: './src/reducers',
selectors: './src/selectors',
store: './src/store',
utils: './src/utils',
navigators: './src/navigators',
validations: './src/validations',
},
},
],
],
};