From 085204dbdf17f379c9a32ea11660accb51b4311d Mon Sep 17 00:00:00 2001 From: Osmium Sorcerer Date: Mon, 6 Apr 2026 14:48:43 +0000 Subject: Update dependencies and ECMAScript target Fix relevant breaking changes. --- tsconfig.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'tsconfig.json') diff --git a/tsconfig.json b/tsconfig.json index f33e7c1..91508ff 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -2,13 +2,13 @@ "compilerOptions": { "outDir": "./dist", "allowJs": true, - "target": "es5", - "lib": ["DOM", "DOM.Iterable", "ES2021.String"], + "target": "es2022", + "lib": ["DOM", "ES2022"], "strict": true, "strictNullChecks": false, //document.getElementBy - "downlevelIteration": true, "resolveJsonModule": true, - "esModuleInterop": true + "esModuleInterop": true, + "types": [ "node", "jest" ] }, "include": ["./webAO/**/*"] } -- cgit