Skip to content

Commit

Permalink
Add a launch.json for VS Code debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
octogonz committed Feb 27, 2024
1 parent 687590c commit 8603b87
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions apps/sparo-lib/.vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
// 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": [
{
"type": "node",
"request": "launch",
"name": "Launch Program",
"program": "${workspaceFolder}/../sparo/lib/start.js",
"cwd": "${workspaceFolder}"
}
]
}

0 comments on commit 8603b87

Please sign in to comment.