Closed equinusocio closed 2 months ago
Learned that vscode package is no more a npm modules and is a namespace provided by Vscode App. But there is no doc about this, plus we can't use tsc to compile extensions since vscode import is broken. We're forced to bundle js and set vscode as external.
Once init an extension template, the
vcode
extension is marked as deprecated and suggest to install@types/vscode
and@vscode/test-electron
, the former contains only types, the latter is for test... but there is no alternative tovcode
module which provide the API likeregisterCommand
Is not clear what to do... since
vscode
package is marked as deprecated but still required.