Reputation: 11
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:
All I want is to convert the actual project I have in a Vs code extension.
Upvotes: 0
Views: 123
Reputation: 3918
vscode
dependency in section devDependencies
e.g
"devDependencies": {
//...rest of the dependencies,
"vscode": "^1.1.37"
}
Upvotes: 1