You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The should be avoided by changing the dev dependency "vscode": "^1.1.34" to version 1.1.36 and use the vscode.Webview.asWebviewUri() where needed.
Edit:
The npm package vscode is no longer supported by the vscode project. The dependency must be change to "@types/vscode": "^1.30.0" which corresponds to the vscode property in the engines definition in package.json .
The text was updated successfully, but these errors were encountered:
Beginning with version 1.39 vscode creates a warning message if an extension uses the
vscode-resource:
directly (see Warn webview extensions that use thevscode-resource:
scheme directly) .The should be avoided by changing the dev dependency
"vscode": "^1.1.34"
to version1.1.36
and use thevscode.Webview.asWebviewUri()
where needed.Edit:
The npm package
vscode
is no longer supported by the vscode project. The dependency must be change to"@types/vscode": "^1.30.0"
which corresponds to thevscode
property in theengines
definition inpackage.json
.The text was updated successfully, but these errors were encountered: