Skip to content

Commit

Permalink
launch.json: add @/web-server
Browse files Browse the repository at this point in the history
  • Loading branch information
rezonant committed Apr 15, 2024
1 parent 0fdb029 commit fbfb0d5
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"version": "0.2.0",
"configurations": [

{
"name": "@/http - Tests",
"type": "node",
Expand All @@ -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",
Expand Down

0 comments on commit fbfb0d5

Please sign in to comment.