forked from ngocle2497/BoilerplateReactNative
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.babelrc
31 lines (31 loc) · 870 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
28
29
30
31
{
"env": {
"production": {
"plugins": ["transform-remove-console"]
}
},
"plugins": [
[
"module-resolver",
{
"root": ["./"],
"alias": {
"@assets": "./src/app/assets",
"@common": "./src/app/common",
"@animated": "./src/app/common/animated",
"@config": "./src/app/config",
"@features": "./src/app/features",
"@library": "./src/app/library",
"@components": "./src/app/library/components",
"@networking": "./src/app/library/networking",
"@utils": "./src/app/library/utils",
"@navigation": "./src/app/navigation",
"@store": "./src/app/store",
"@theme": "./src/app/themes",
"@transition": "./src/app/transition",
"@app_redux": "./src/app/store/app_redux"
}
}
]
]
}