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",