forked from SergioCrisostomo/v-click-outside-x
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.babelrc
42 lines (42 loc) · 739 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
34
35
36
37
38
39
40
41
42
{
"presets": [
[
"@babel/preset-env",
{
"loose": false,
"modules": "commonjs",
"spec": true,
"useBuiltIns": false,
"debug": false
}
]
],
"env": {
"esm": {
"presets": [
[
"@babel/preset-env",
{
"loose": false,
"modules": false,
"spec": true,
"useBuiltIns": false,
"debug": false
}
]
]
}
},
"plugins": [
"@babel/plugin-transform-property-mutators",
[
"@babel/plugin-transform-runtime",
{
"corejs": false,
"helpers": false,
"regenerator": false,
"useESModules": false
}
]
]
}