Klei Aliaj
Klei Aliaj

Reputation: 11

trying to publish a VS Code Extension

I have developed a typescript app and I would like to convert as a vs code extension, in order to publish it at visual studio code marketplace. I have already tried with official doc but the commands here generate a template from scratch. Also tried to do that within my project but it outputs this error: enter image description here All I want is to convert the actual project I have in a Vs code extension.

Upvotes: 0

Views: 123

Answers (1)

Parag Diwan
Parag Diwan

Reputation: 3918

  1. open package.json
  2. move vscode dependency in section devDependencies

e.g

"devDependencies": {
   //...rest of the dependencies, 
   "vscode": "^1.1.37"
}

Upvotes: 1

Related Questions