**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:
parent
b0ba4f185d
commit
3c95ee011d
3 changed files with 6 additions and 3 deletions
|
|
@ -10,7 +10,8 @@
|
|||
"rootDir": ".",
|
||||
"lib": [
|
||||
"DOM",
|
||||
"ESNext"
|
||||
"ESNext",
|
||||
"DOM.Asynciterable"
|
||||
],
|
||||
"skipLibCheck": true,
|
||||
"forceConsistentCasingInFileNames": true,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue