Vscode配置自动切换node版本
问题描述
开发环境安装了很多Node JS版本,项目经常切换也常常忘记了使用了什么版本,所以最好在打开项目terminal,安装依赖,启动项目前自动设置好版本
具体配置
.vscode/settings.json中,添加如下代码:
{ "terminal.integrated.profiles.windows": {"PowerShell": {"source": "PowerShell","icon": "terminal-powershell","args": ["-Command", "nvm use 16.9.1; powershell"]},"Command Prompt": {"path": ["${env:windir}\\Sysnative\\cmd.exe","${env:windir}\\System32\\cmd.exe"],"args": ["/k", "nvm use 16.9.1"],"icon": "terminal-cmd"},"Git Bash": {"source": "Git Bash","args": ["-c", "nvm use 16.9.1 && exec bash"]}}
}
- 最终效果