aboutsummaryrefslogtreecommitdiff
path: root/tsconfig.json
diff options
context:
space:
mode:
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 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/**/*"]
}