Add new configuration

pull/73/head
MillenniumEarl 2021-02-16 10:41:41 +01:00
parent 961d1aa55a
commit e77db93e58
1 changed files with 8 additions and 1 deletions

9
.vscode/launch.json vendored
View File

@ -2,10 +2,17 @@
"configurations": [
{
"type": "node-terminal",
"name": "Run Script: test",
"name": "Test",
"request": "launch",
"command": "npm run test",
"cwd": "${workspaceFolder}"
},
{
"type": "node-terminal",
"name": "Compile",
"request": "launch",
"command": "npm run compile",
"cwd": "${workspaceFolder}"
}
]
}