-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.babelrc
37 lines (37 loc) · 1.06 KB
/
.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
28
29
30
31
32
33
34
35
36
37
{
"presets": [
"module:@react-native/babel-preset"
],
"plugins": [
[
"module:react-native-dotenv"
],
[
"module-resolver",
{
"cwd": "babelrc",
"root": [
"./src"
],
"extensions": [
".js",
".ios.js",
".android.js"
],
"alias": {
"assets": "./src/assets",
"components": "./src/components",
"navigation": "./src/navigation",
"screens": "./src/screens",
"services": "./src/services",
"utils": "./src/utils",
"store": "./src/store",
"hooks": "./src/hooks",
"vendor": "./src/vendor",
"@generated": "./src/generated",
"@rna": "./src/vendor/react-native-arsenal/lib"
}
}
]
]
}