Add a VSCode debug configuration matching the start-server npm script (#1061)

This commit is contained in:
Adam Coyne 2020-05-31 05:40:53 -05:00 committed by GitHub
parent ac10701b55
commit 0def5f9a63
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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

@ -0,0 +1,18 @@
{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "start-server",
"skipFiles": [
"<node_internals>/**"
],
"env": {
"TRILIUM_ENV": "dev"
},
"outputCapture": "std",
"program": "${workspaceFolder}/src/www"
}
]
}