diff options
| author | Osmium Sorcerer <os@sof.beauty> | 2026-04-06 14:48:43 +0000 |
|---|---|---|
| committer | Osmium Sorcerer <os@sof.beauty> | 2026-04-18 16:52:23 +0000 |
| commit | 085204dbdf17f379c9a32ea11660accb51b4311d (patch) | |
| tree | dd85139d396f894e69cb66f94859b6d21731f311 /tsconfig.json | |
| parent | 45b706909323ba82035c49eb9d2b2546eeab6a78 (diff) | |
Update dependencies and ECMAScript target
Fix relevant breaking changes.
Diffstat (limited to 'tsconfig.json')
| -rw-r--r-- | tsconfig.json | 8 |
1 files changed, 4 insertions, 4 deletions
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/**/*"] } |
