TYP: Enable the DOM.Iterable TS library

This commit is contained in:
bananarama92 2024-07-14 23:41:12 +02:00
parent 7baf19259d
commit ec912b24ef
No known key found for this signature in database
GPG key ID: ECBC951D6255A50F
2 changed files with 2 additions and 2 deletions

View file

@ -3,7 +3,7 @@
"noEmit": true, "noEmit": true,
"module": "commonjs", "module": "commonjs",
"target": "ES2021", "target": "ES2021",
"lib": ["es2021", "dom"], "lib": ["es2021", "dom", "DOM.Iterable"],
"allowJs": true, "allowJs": true,
"strict": true, "strict": true,
"noImplicitAny": true "noImplicitAny": true

View file

@ -2,7 +2,7 @@
"compilerOptions": { "compilerOptions": {
"module": "commonjs", "module": "commonjs",
"target": "ES2021", "target": "ES2021",
"lib": ["es2021", "dom"], "lib": ["es2021", "dom", "DOM.Iterable"],
"checkJs": true, "checkJs": true,
"types": [], "types": [],
}, },