add a launch config for backend

This commit is contained in:
2021-08-20 20:14:17 +00:00
parent 1ac7e53ef5
commit 4cd5c2e4f2
2 changed files with 26 additions and 9 deletions

16
.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,16 @@
{
// 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": "Backend",
"request": "launch",
"runtimeArgs": ["run-script", "ts-node-dev"],
"runtimeExecutable": "npm",
"skipFiles": ["<node_internals>/**"],
"type": "pwa-node"
}
]
}