-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.babelrc
33 lines (33 loc) · 922 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
32
33
{
"presets": [
"module:metro-react-native-babel-preset",
"@babel/flow"
],
"retainLines": true,
"plugins": [
[
"module-resolver",
{
"root": [ "./src" ],
"cwd": "package.json",
"alias": {
"config": "./src/config",
"api": "./src/api",
"auth": "./src/auth",
"components": "./src/components",
"issue": "./src/issue",
"locale": "./src/locale",
"notifications": "./src/notifications",
"organization": "./src/organization",
"package.json": "./package.json",
"repository": "./src/repository",
"search": "./src/search",
"testData": "./__tests__/data",
"user": "./src/user",
"utils": "./src/utils"
}
}
],
"transform-inline-environment-variables"
]
}