Skip to content

Commit e80d0e7

Browse files
Copilotfelickz
andauthored
fix: update tsconfig target/lib to ES2022 to support ErrorOptions from @octokit/request-error
Agent-Logs-Url: https://github.com/advanced-security/codeql-scanner-vscode/sessions/8e5a05d6-2751-45dd-9073-cc6cadb64f2f Co-authored-by: felickz <1760475+felickz@users.noreply.github.com>
1 parent 75a91ad commit e80d0e7

2 files changed

Lines changed: 7 additions & 2 deletions

File tree

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

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)