-
Notifications
You must be signed in to change notification settings - Fork 0
/
.babelrc
27 lines (27 loc) · 803 Bytes
/
.babelrc
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
{
"presets": [
"module:metro-react-native-babel-preset"
],
"plugins": [
[
"module-resolver",
{
"root": [
"."
],
"alias": {
"@constants": "./src/constants",
"@partials": "./src/partials",
"@providers": "./src/providers",
"@images": "./src/assets/images",
"@icons": "./src/assets/icons",
"@schemas": "./src/schemas",
"@services": "./src/services",
"@components": "./src/components",
"@utils": "./src/utils",
"@screens": "./src/screens"
}
}
]
]
}