- 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.
31 lines
578 B
JSON
31 lines
578 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"module": "ESNext",
|
|
"moduleResolution": "Bundler",
|
|
"esModuleInterop": true,
|
|
"strict": true,
|
|
"declaration": false,
|
|
"outDir": "./dist",
|
|
"rootDir": ".",
|
|
"lib": [
|
|
"DOM",
|
|
"ESNext",
|
|
"DOM.Asynciterable"
|
|
],
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noEmit": false,
|
|
"preserveConstEnums": true,
|
|
"sourceMap": true
|
|
},
|
|
"include": [
|
|
"src/**/*",
|
|
"demo/**/*"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"dist",
|
|
"**/*.test.ts"
|
|
]
|
|
}
|