From fbfb0d5cb25f416fc803857e120a38897e3f533f Mon Sep 17 00:00:00 2001 From: William Lahti Date: Mon, 15 Apr 2024 03:37:57 -0700 Subject: [PATCH] launch.json: add @/web-server --- .vscode/launch.json | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/.vscode/launch.json b/.vscode/launch.json index a7f2e841..09fa5536 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -1,6 +1,7 @@ { "version": "0.2.0", "configurations": [ + { "name": "@/http - Tests", "type": "node", @@ -20,6 +21,25 @@ "console": "internalConsole", "sourceMaps": true }, + { + "name": "@/web-server - Tests", + "type": "node", + "request": "launch", + "program": "dist/test.js", + "args": [], + "stopOnEntry": false, + "cwd": "${workspaceRoot}/packages/web-server", + "preLaunchTask": "npm: build - packages/web-server", + "runtimeExecutable": null, + "runtimeArgs": [ + "--nolazy" + ], + "env": { + "NODE_ENV": "development" + }, + "console": "internalConsole", + "sourceMaps": true + }, { "name": "@/common - Tests", "type": "node",