Chamila Maddumage
Chamila Maddumage

Reputation: 3876

VSCode Change Default Terminal from Windows PowerShell to Node

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

Answers (1)

amirali
amirali

Reputation: 1964

  1. Press ctrl + comma
  2. Search for terminal integrated shell windows
  3. 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.

Upvotes: 1

Related Questions