From e7e925ee32663e54e1579f9618cc4a56b597804b Mon Sep 17 00:00:00 2001 From: FabianLars Date: Wed, 26 Apr 2023 17:18:13 +0200 Subject: [PATCH] fix(http): Enable "DOM.Iterable" in typescript --- tsconfig.base.json | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/tsconfig.base.json b/tsconfig.base.json index 1eebbeb6..f40996b1 100644 --- a/tsconfig.base.json +++ b/tsconfig.base.json @@ -1,20 +1,20 @@ { - "compilerOptions": { - "allowSyntheticDefaultImports": true, - "esModuleInterop": true, - "lib": ["ES2019", "ES2020.Promise", "ES2020.String", "DOM"], - "module": "ESNext", - "moduleResolution": "node", - "noEmit": true, - "noEmitOnError": false, - "noUnusedLocals": true, - "noUnusedParameters": true, - "pretty": true, - "sourceMap": true, - "strict": true, - "target": "ES2019", - "declaration": true, - "declarationDir": "./" - }, - "exclude": ["dist-js", "node_modules", "test/types"] + "compilerOptions": { + "allowSyntheticDefaultImports": true, + "esModuleInterop": true, + "lib": ["ES2019", "ES2020.Promise", "ES2020.String", "DOM", "DOM.Iterable"], + "module": "ESNext", + "moduleResolution": "node", + "noEmit": true, + "noEmitOnError": false, + "noUnusedLocals": true, + "noUnusedParameters": true, + "pretty": true, + "sourceMap": true, + "strict": true, + "target": "ES2019", + "declaration": true, + "declarationDir": "./" + }, + "exclude": ["dist-js", "node_modules", "test/types"] }