**feat(config): add support for 'DOM.Asynciterable' in TypeScript config files**

- Updated `tsconfig.unified.json`, `tsconfig.browser.json`, and `tsconfig.json` to include `"DOM.Asynciterable"` in the `lib` option.
- Ensured compatibility with asynchronous iteration patterns in DOM APIs.

**Purpose**: Enable support for DOM asynchronous iterable utilities, improving compatibility with modern TypeScript and DOM usage scenarios.
This commit is contained in:
David Snelling 2025-07-24 11:21:29 -07:00
parent c7ed98e159
commit 23ce2cf83e
3 changed files with 6 additions and 3 deletions

View file

@ -10,7 +10,8 @@
"rootDir": ".", "rootDir": ".",
"lib": [ "lib": [
"DOM", "DOM",
"ESNext" "ESNext",
"DOM.Asynciterable"
], ],
"skipLibCheck": true, "skipLibCheck": true,
"forceConsistentCasingInFileNames": true, "forceConsistentCasingInFileNames": true,

View file

@ -10,7 +10,8 @@
"rootDir": "./src", "rootDir": "./src",
"lib": [ "lib": [
"DOM", "DOM",
"ESNext" "ESNext",
"DOM.Asynciterable"
], ],
"skipLibCheck": true, "skipLibCheck": true,
"forceConsistentCasingInFileNames": true, "forceConsistentCasingInFileNames": true,

View file

@ -10,7 +10,8 @@
"rootDir": "./src", "rootDir": "./src",
"lib": [ "lib": [
"DOM", "DOM",
"ESNext" "ESNext",
"DOM.Asynciterable"
], ],
"skipLibCheck": true, "skipLibCheck": true,
"forceConsistentCasingInFileNames": true, "forceConsistentCasingInFileNames": true,