forked from wswoodruff/strangeluv-native
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.babelrc
27 lines (27 loc) · 844 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"],
"sourceMaps": true,
"plugins": [
[
"module-resolver",
{
"root": [
"src"
],
"alias": {
"components": "./src/components",
"containers": "./src/containers",
"reducers": "./src/reducers",
"images": "./src/images",
"actions": "./src/actions",
"action-types": "./src/action-types",
"static": "./src/static",
"screens": "./src/screens",
"wiring": "./src/wiring",
"utils": "./src/utils",
"styles": "./src/styles"
}
}
]
]
}