fix: added working launch.json for VSCode (#4037)

* fix: added working launch json for VScode

* fix: removed unused env
This commit is contained in:
rostaklein
2024-02-20 14:27:56 +01:00
committed by GitHub
parent 82e9f28383
commit 9aefab2297

20
.vscode/launch.json vendored
View File

@ -1,21 +1,21 @@
{ {
"version": "0.2.0",
"resolveSourceMapLocations": ["${workspaceFolder}/**", "!**/node_modules/**"],
"configurations": [ "configurations": [
{ {
"name": "twenty-server - dev debug",
"type": "node", "type": "node",
"request": "launch", "request": "launch",
"name": "Server Debug",
"runtimeExecutable": "yarn", "runtimeExecutable": "yarn",
"cwd": "${workspaceFolder}/server",
"runtimeArgs": [ "runtimeArgs": [
"start:debug", "nx",
"--", "run",
"--inspect-brk" "twenty-server:start:dev",
], ],
"console": "integratedTerminal", "outputCapture": "std",
"restart": true, "internalConsoleOptions": "openOnSessionStart",
"protocol": "auto", "console": "internalConsole",
"port": 9229, "cwd": "${workspaceFolder}/packages/twenty-server/"
"autoAttachChildProcesses": true
} }
] ]
} }