Ravindra Pawar
Ravindra Pawar

Reputation: 125

How can I convert my normal angular project into a vs code extension?

I am having one angular 12 project available. Now I want to convert this project or say I want to make VS Code extension from this angular project. Is there any way to build angular project and load it as a VS Code extension?

Upvotes: 2

Views: 985

Answers (2)

Andreas Gyr
Andreas Gyr

Reputation: 519

As stated above, Webview API offers that. There are also a lot of official samples, including one for Angular.

Upvotes: 7

Charles
Charles

Reputation: 651

This is possible through the Webview API of VSCode. This will allow you to embed your Angular project as a VSCode extension.

Upvotes: 3

Related Questions