When releasing public repos on Github or during collaboration I want to make sure that we are on the same page and I get asked regularly what extensions I'm using for a project. After reading VSC docs I'm familiar with getting a list of extensions from "How can you export the Visual Studio Code extension list?":
code --list-extensions | xargs -L 1 echo code --install-extension
but is there a way to install all extensions by listing them in package.json for the project and for them to install with the command from either npm install or yarn add?
Closest I can find from searching is Cannot install extensions in visual Studio code and I cannot find anything on the VSC docs