Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -1534,8 +1534,8 @@
"@types/vscode": "1.38.0",
"@typescript-eslint/eslint-plugin": "4.10.0",
"@typescript-eslint/parser": "4.10.0",
Comment on lines 1535 to 1536
Copy link

Copilot AI Feb 15, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

eslint 10 is not compatible with the currently pinned @typescript-eslint/parser and @typescript-eslint/eslint-plugin v4.10.0; lint will fail to load/execute with this combination. Please upgrade the @typescript-eslint packages to versions that support eslint 10 and adjust .eslintrc.json if any rules/options were renamed/removed.

Suggested change
"@typescript-eslint/eslint-plugin": "4.10.0",
"@typescript-eslint/parser": "4.10.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",

Copilot uses AI. Check for mistakes.
"eslint": "7.15.0",
"jest": "26.6.3",
"eslint": "10.0.0",
Copy link

Copilot AI Feb 15, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Upgrading to eslint 10 will break the CI/build as configured: the workflow uses Node 12 (see .github/workflows/build-and-test.yml:20), but eslint 10 requires a much newer Node runtime. Either keep eslint on a Node-12-compatible major, or bump the CI/tooling Node version (and ensure local/dev tooling matches).

Suggested change
"eslint": "10.0.0",
"eslint": "8.57.0",

Copilot uses AI. Check for mistakes.
"jest": "27.0.0",
"ts-jest": "26.4.4",
Comment on lines +1538 to 1539
Copy link

Copilot AI Feb 15, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

jest is bumped to 27, but ts-jest remains on 26.4.4 (and @types/jest is still 26.0.19). This version skew is likely to break test runs and TypeScript typings. Please align jest/ts-jest/@types-jest to the same major family (or keep jest at 26 if you need to stay on ts-jest 26).

Copilot uses AI. Check for mistakes.
"typescript": "4.0.2",
"uglify-js": "3.10.0"
Expand Down
Loading