From 0def5f9a63224529d0c967cfb002fc3a9af83ee2 Mon Sep 17 00:00:00 2001 From: Adam Coyne Date: Sun, 31 May 2020 05:40:53 -0500 Subject: [PATCH] Add a VSCode debug configuration matching the start-server npm script (#1061) --- .vscode/launch.json | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .vscode/launch.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 000000000..87b70a760 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,18 @@ +{ + "version": "0.2.0", + "configurations": [ + { + "type": "node", + "request": "launch", + "name": "start-server", + "skipFiles": [ + "/**" + ], + "env": { + "TRILIUM_ENV": "dev" + }, + "outputCapture": "std", + "program": "${workspaceFolder}/src/www" + } + ] +} \ No newline at end of file