UNPKG

852 BJSONView Raw
1{
2 "presets": [
3 [
4 "@babel/preset-env",
5 {
6 "targets": {
7 "esmodules": true,
8 "android": "80",
9 "chrome": "85",
10 "edge": "87",
11 "firefox": "84",
12 "ios": "13",
13 "node": "14",
14 "opera": "72",
15 "safari": "14",
16 "samsung": "14"
17 },
18 "bugfixes": true
19 }
20 ]
21 ],
22 "plugins": [
23 [
24 "template-html-minifier", {
25 "modules": {
26 "lit-html": ["html"],
27 "lit-element": [
28 "html",
29 {"name": "css", "encapsulation": "style"}
30 ]
31 },
32 "htmlMinifier": {
33 "collapseWhitespace": true,
34 "conservativeCollapse": true,
35 "removeComments": true,
36 "caseSensitive": true,
37 "minifyCSS": true
38 }
39 }
40 ]
41 ]
42}
\No newline at end of file