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