Simple tests for node debugger

This commit is contained in:
Ben Jackson 2019-10-06 19:24:48 +01:00
commit 0b0388d075
5 changed files with 100 additions and 0 deletions

View file

@ -0,0 +1,5 @@
{
"plugins": {
"node": {}
}
}

View file

@ -0,0 +1,15 @@
{
"configurations": {
"run": {
"adapter": "vscode-node",
"configuration": {
"request": "launch",
"protocol": "auto",
"stopOnEntry": true,
"console": "integratedTerminal",
"program": "${workspaceRoot}/simple.js",
"cwd": "${workspaceRoot}"
}
}
}
}

View file

@ -0,0 +1,3 @@
var msg = 'Hello, world!'
console.log( "OK stuff happened" )