VSCode, Typescript, Node : ts.cmd not found, exit code: 127

/usr/bin/bash: tsc.cmd: command not found
The terminal process terminated with exit code: 127

The full error message I got was

/usr/bin/bash: c:Projectsnicksprojectnode_modules.bintsc.cmd: command not found
The terminal process terminated with exit code: 127

This post: https://github.com/Microsoft/vscode/issues/35593 shows how to fix it: create a settings.json file in your project folder (c:\projects\nicksproject\settings.json) containing

{    
    "xxterminal.integrated.shell.windows": 
        "C:\\Program Files\\Git\\bin\\bash.exe",    
    "terminal.integrated.shell.windows": 
        "c:\\Windows\\SysWOW64\\cmd.exe"  }
Website by Daneswood