-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.babelrc
More file actions
41 lines (37 loc) · 875 Bytes
/
.babelrc
File metadata and controls
41 lines (37 loc) · 875 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
32
33
34
35
36
37
38
39
40
41
{
"presets": ["env", "stage-2"],
"plugins":
[
"add-module-exports",
["module-resolver", {
"root": ["."],
"alias":
{
"escomplex-plugin-syntax-estree/src": "escomplex-plugin-syntax-estree/dist",
"typhonjs-ast-walker/src": "typhonjs-ast-walker/dist",
"typhonjs-escomplex-commons/src": "typhonjs-escomplex-commons/dist"
}
}],
"transform-runtime"
],
"env":
{
"escomplex-dev":
{
"plugins":
[
"add-module-exports",
["module-resolver", {
"root": ["."],
"cwd": "babelrc",
"alias":
{
"escomplex-plugin-syntax-estree/src": "../escomplex-plugin-syntax-estree/src",
"typhonjs-escomplex-commons/src": "../typhonjs-escomplex-commons/src"
}
}],
"transform-runtime"
]
}
}
}