Reputation: 3876
How can I change my default terminal from Powershell to Node in VS Code? After installing the latest version of VS Code, default terminal has been changed from Node to Powershell. I want to run my angular application using Node terminal. How can I fix this?
Upvotes: 0
Views: 4383
Reputation: 1964
terminal integrated shell windows
You can also add line "terminal.integrated.shell.windows": "path/to/shell"
to your global settings.json file.
Upvotes: 1