From 469ff11f5bc3f26bf2e233cc8661588bdd770ede Mon Sep 17 00:00:00 2001 From: Duc Nguyen Date: Wed, 18 Oct 2023 15:36:33 +0200 Subject: [PATCH] Change compiler target. --- CHANGELOG.md | 1 + tsconfig.json | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7317b78..674f580 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,7 @@ ### Changed - Removed dependencies on `http`, `bluebird`, `request` - Use customgrouping3 instead of customgrouping for categorization +- Target `ES2022` instead of `ES5` ## Removed - Possibility to use a query string diff --git a/tsconfig.json b/tsconfig.json index 542c747..5082981 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,7 +1,7 @@ { "compilerOptions": { "module": "commonjs", - "target": "es5", + "target": "ES2022", "sourceMap": true, "declaration": true, "outDir": "./dist",