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?
1 Answer
- Press ctrl + comma
- Search for
terminal integrated shell windows - Type in the path of your default terminal
You can also add line "terminal.integrated.shell.windows": "path/to/shell" to your global settings.json file.
1 Comment
Chamila Maddumage
Just added cmd.exe path. Once I execute a command it will automatically open up Node terminal and works perfectly. Thanks for the answer.