forked from vtexdocs/RapiDoc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.babelrc.json
More file actions
49 lines (49 loc) · 1 KB
/
.babelrc.json
File metadata and controls
49 lines (49 loc) · 1 KB
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
43
44
45
46
47
48
49
{
"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
}
}
],
[
"prismjs", {
"languages": ["shell", "javascript", "ruby", "php", "python", "json"],
"plugins": ["custom-class"],
"css": true
}
]
]
}