F95API/.vscode/launch.json

18 lines
434 B
JSON

{
"configurations": [
{
"type": "node-terminal",
"name": "Test",
"request": "launch",
"command": "npm run test",
"cwd": "${workspaceFolder}"
},
{
"type": "node-terminal",
"name": "Compile",
"request": "launch",
"command": "npm run compile",
"cwd": "${workspaceFolder}"
}
]
}