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": {
|
||||
"target": "ES5",
|
||||
"lib": ["DOM", "ES2015"],
|
||||
"lib": ["DOM", "DOM.Iterable", "ES2015"],
|
||||
"allowJs": true,
|
||||
"skipLibCheck": true,
|
||||
"esModuleInterop": true,
|
||||
|
@ -13,7 +13,8 @@
|
|||
"outDir": "./dist/",
|
||||
"checkJs": false,
|
||||
"strictNullChecks": true,
|
||||
"jsx": "react-jsx"
|
||||
"jsx": "react-jsx",
|
||||
"downlevelIteration": true
|
||||
},
|
||||
"include": [
|
||||
"src"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue