Add a launch.json for VS Code debugging

This commit is contained in:
Pete Gonzalez 2024-02-26 20:08:46 -08:00 committed by Cheng Liu
parent e1f7673127
commit 9727125032
No known key found for this signature in database
GPG key ID: EEC8452F7DB85CD6

15
apps/sparo-lib/.vscode/launch.json vendored Normal file
View file

@ -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}"
}
]
}