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:
parent
23d321d426
commit
93b12cf74b
1 changed files with 3 additions and 2 deletions
|
@ -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"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue