1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Fix iterable querySelectorAll TypeScript errors

This commit is contained in:
Dmitry Lyzo 2022-02-16 00:59:41 +03:00
parent 23d321d426
commit 93b12cf74b

View file

@ -1,7 +1,7 @@
{ {
"compilerOptions": { "compilerOptions": {
"target": "ES5", "target": "ES5",
"lib": ["DOM", "ES2015"], "lib": ["DOM", "DOM.Iterable", "ES2015"],
"allowJs": true, "allowJs": true,
"skipLibCheck": true, "skipLibCheck": true,
"esModuleInterop": true, "esModuleInterop": true,
@ -13,7 +13,8 @@
"outDir": "./dist/", "outDir": "./dist/",
"checkJs": false, "checkJs": false,
"strictNullChecks": true, "strictNullChecks": true,
"jsx": "react-jsx" "jsx": "react-jsx",
"downlevelIteration": true
}, },
"include": [ "include": [
"src" "src"