Reputation: 125
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
Reputation: 519
As stated above, Webview API offers that. There are also a lot of official samples, including one for Angular.
Upvotes: 7
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