-
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy path.babelrc
More file actions
31 lines (31 loc) · 578 Bytes
/
.babelrc
File metadata and controls
31 lines (31 loc) · 578 Bytes
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
{
"presets": [
"@babel/preset-env",
"@babel/preset-flow"
],
"plugins": [
"@babel/plugin-transform-flow-strip-types",
],
"env": {
"test": {
"plugins": [
["module-resolver", {
"root": ["./__tests__"],
"alias": {
"^axobject-query/src/(.*)": "./lib/\\1",
}
}]
]
},
"development": {
"plugins": [
["module-resolver", {
"root": ["./src"],
"alias": {
"^axobject-query/src/(.*)": "./src/\\1",
}
}]
]
},
}
}