forked from rapi-doc/RapiDoc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.babelrc.json
42 lines (42 loc) · 852 Bytes
/
.babelrc.json
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",
{
"targets": {
"esmodules": true,
"android": "80",
"chrome": "85",
"edge": "87",
"firefox": "84",
"ios": "13",
"node": "14",
"opera": "72",
"safari": "14",
"samsung": "14"
},
"bugfixes": true
}
]
],
"plugins": [
[
"template-html-minifier", {
"modules": {
"lit-html": ["html"],
"lit-element": [
"html",
{"name": "css", "encapsulation": "style"}
]
},
"htmlMinifier": {
"collapseWhitespace": true,
"conservativeCollapse": true,
"removeComments": true,
"caseSensitive": true,
"minifyCSS": true
}
}
]
]
}