Skip to content

Commit 0def5f9

Browse files
authored
Add a VSCode debug configuration matching the start-server npm script (zadam#1061)
1 parent ac10701 commit 0def5f9

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.vscode/launch.json

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"version": "0.2.0",
3+
"configurations": [
4+
{
5+
"type": "node",
6+
"request": "launch",
7+
"name": "start-server",
8+
"skipFiles": [
9+
"<node_internals>/**"
10+
],
11+
"env": {
12+
"TRILIUM_ENV": "dev"
13+
},
14+
"outputCapture": "std",
15+
"program": "${workspaceFolder}/src/www"
16+
}
17+
]
18+
}

0 commit comments

Comments
 (0)