forked from lincenying/vue2-multiple-entry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.babelrc
33 lines (33 loc) · 829 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
{
"env": {
"production": {
"presets": [
["env", {
"targets": {
"browsers": ["last 2 version", "ie 10"]
},
"modules": false,
"debug": true
}]
],
"plugins": [
"transform-runtime",
"transform-object-rest-spread"
]
},
"development": {
"presets": [
["env", {
"targets": {
"chrome": 52
},
"modules": false,
"debug": true
}]
],
"plugins": [
"transform-object-rest-spread"
]
}
}
}