added a run command for vscode

This commit is contained in:
Gordon Pedersen 2023-04-18 15:50:20 +10:00
parent 386e4cd650
commit c85d2f3d88

14
.vscode/launch.json vendored Normal file
View file

@ -0,0 +1,14 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Run Game",
"type": "node-terminal",
"request": "launch",
"command": "${workspaceRoot}/../dragonruby.exe ${workspaceRoot}",
}
]
}