Issue Description
The extension declares VS Code ^1.75.0 as its minimum supported version:
However, the development dependency still uses the considerably older VS Code API types:
This mismatch means the project is compiled against API definitions that do not reflect its declared minimum runtime version. It may also hide compatibility or typing issues that would be visible with the correct API types.
Update @types/vscode to ^1.75.0 and refresh the corresponding lockfile entry. This keeps compile-time API definitions aligned with the extension manifest while avoiding types introduced after the minimum supported VS Code version.
Issue Description
The extension declares VS Code ^1.75.0 as its minimum supported version:
However, the development dependency still uses the considerably older VS Code API types:
This mismatch means the project is compiled against API definitions that do not reflect its declared minimum runtime version. It may also hide compatibility or typing issues that would be visible with the correct API types.
Update @types/vscode to ^1.75.0 and refresh the corresponding lockfile entry. This keeps compile-time API definitions aligned with the extension manifest while avoiding types introduced after the minimum supported VS Code version.