I've been developing a VS Code extension that reads data from JSON files and displays it in a custom views container.
After compiling my extension to a VSIX, everything seems fine. However, once installed, none of the commands I defined in the package.json are recognized.
Upon installation and restarting VS Code, when I click on the icon for my view container and try to use the mapped buttons, I receive an error stating "
command <commandname> not found
".
Additionally, I keep receiving warnings suggesting the use of webpack due to including several hundred files.
In reality, I only have 32 files in my source and resources folders combined, along with 8 other files at the root level (such as .gitignore). I'm excluding node_modules
in my tsconfig.json, so I'm unsure where all these extra files are coming from, whether they're development dependencies or something else entirely.
Any advice or suggestions would be greatly appreciated!