How to pass arguments to program, when debugging in Visual Studio Code
Found my answer at: https://github.com/Microsoft/vscode/issues/2167 You have to pass the arguments as individual string elements: “args”: [ “–test”, “buildOutput/JavaScript1.js”, “–env”, “devtest-chrome-win8” ] My program needed a parameter -d and a parameter -s, so I changed