I'm running Visual Studio Code on Windows, but run my (NodeJS/TypeScript) application on the WSL/bash. However, I can't make the VS Code Debug Console use bash. It seems to still use cmd.exe.
I can test this by running my application from inside Visual Studio Code, and then entering process.platform in the debug console. It shows win32.
On the other hand, the Terminal does use bash.exe.
I've set terminal.integrated.shell.windows and terminal.external.windowsExec to C:\\Windows\\System32\\bash.exe.
How can I make VS Code use bash in the Debug Console?