static: add polyfill for firefox for CSS

This commit is contained in:
Jens Langhammer 2020-11-23 21:41:23 +01:00
parent 665839133f
commit cb2bad0a36
6 changed files with 14 additions and 6 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -340,6 +340,11 @@
"resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
"integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s="
},
"construct-style-sheets-polyfill": {
"version": "2.4.3",
"resolved": "https://registry.npmjs.org/construct-style-sheets-polyfill/-/construct-style-sheets-polyfill-2.4.3.tgz",
"integrity": "sha512-ECo96zFPsdghrMJmJ0vomcHsqLOIYpudobcNCIPeMubyFzBcLCfljuY0oFA3DD7btiFqB0sZ+0szbsiE8I24VA=="
},
"decode-uri-component": {
"version": "0.2.0",
"resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz",

View File

@ -12,6 +12,7 @@
"@types/codemirror": "0.0.98",
"chart.js": "^2.9.4",
"codemirror": "^5.58.3",
"construct-style-sheets-polyfill": "^2.4.3",
"lit-element": "^2.4.0",
"lit-html": "^1.3.0",
"rollup": "^2.33.3",

View File

@ -1,3 +1,5 @@
import 'construct-style-sheets-polyfill';
import "./legacy.js";
import "./elements/ActionButton";

View File

@ -6,7 +6,7 @@
"forceConsistentCasingInFileNames": true,
"experimentalDecorators": true,
"sourceMap": true,
"target": "es2017",
"target": "esnext",
"module": "es2015",
"moduleResolution": "node",
"lib": ["es2017", "dom", "dom.iterable"]