Skip to content

Commit 4259642

Browse files
authored
Merge branch 'main' into dependabot/npm_and_yarn/main/development-dependencies-e4ba0c8eb3
2 parents 730bb99 + 9b0b31b commit 4259642

File tree

4 files changed

+71
-59
lines changed

4 files changed

+71
-59
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ All notable changes to the CodeQL Scanner VSCode extension will be documented in
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [Unreleased]
9+
10+
### Changed
11+
- Updated TypeScript compilation target and lib from `ES2020` to `ES2022` to support `ErrorOptions` type used by updated `@octokit/request-error` dependency
12+
813
## [0.1.0] - 2025-06-26
914

1015
### Added

package-lock.json

Lines changed: 62 additions & 55 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -302,9 +302,9 @@
302302
"vscode-test": "^1.6.1"
303303
},
304304
"dependencies": {
305-
"@octokit/rest": "^22.0.0",
305+
"@octokit/rest": "^22.0.1",
306306
"@types/js-yaml": "^4.0.9",
307-
"axios": "^1.13.5",
307+
"axios": "^1.13.6",
308308
"js-yaml": "^4.1.1"
309309
}
310310
}

tsconfig.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
22
"compilerOptions": {
33
"module": "commonjs",
4-
"target": "ES2020",
4+
"target": "ES2022",
55
"outDir": "out",
66
"lib": [
7-
"ES2020"
7+
"ES2022"
88
],
99
"sourceMap": true,
1010
"rootDir": "src",

0 commit comments

Comments
 (0)