chore: add launch config for interactive debugging in VSCode

This commit is contained in:
Michael Zetterberg
2025-03-24 08:31:05 +01:00
parent d236a6e8fd
commit 3fa3165dba

15
.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": [
{
"name": "Debug: Web",
"type": "node-terminal",
"request": "launch",
"command": "yarn dev",
"cwd": "${workspaceFolder}/apps/scandic-web"
}
]
}