A family of Microsoft suites of integrated development tools for building applications for Windows, the web, mobile devices and many other platforms. Miscellaneous topics that do not fit into specific categories.
Hi @Dev Cyberscope ,
This doesn't appear to be a metadata or PAT-related issue. The Marketplace is likely flagging the VSIX because it includes the node_modules folder directly, which is often detected as “suspicious content” by the security scanner.
Try below steps:
- Exclude
node_modulesfrom the VSIX package - Bundle the extension using a tool like esbuild or webpack instead of shipping dependencies
- Generate a single bundled output file (for example:
dist/extension.js) - Update the
mainentry inpackage.jsonto point to it:
"main": "./dist/extension.js"
The issue with Axios occurs because the current setup depends on runtime resolution via node_modules. Once you move to bundling, Axios (and its dependencies) will be included in the final bundle automatically.
Hope this helps!
If the resolution was helpful, kindly take a moment to click on and click on Yes for was this answer helpful. And, if you have any further query do let us know.