aboutsummaryrefslogtreecommitdiff
path: root/tsconfig.json
diff options
context:
space:
mode:
authorOsmium Sorcerer <os@sof.beauty>2026-04-06 14:48:43 +0000
committerOsmium Sorcerer <os@sof.beauty>2026-06-06 03:09:27 +0000
commit31275da317fd58739974ac49c995bca2f7dbcc08 (patch)
tree7b14578ec28cc3106183d5e7e7197d75399d37d1 /tsconfig.json
parentf9b5d128fbd63760d4aba9965f4f2eeaf3adb33b (diff)
Update dependencies and ECMAScript target
Fix relevant breaking changes.
Diffstat (limited to 'tsconfig.json')
-rw-r--r--tsconfig.json8
1 files changed, 4 insertions, 4 deletions
diff --git a/tsconfig.json b/tsconfig.json
index f33e7c17..91508ffe 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/**/*"]
}