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
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

20
.vscode/launch.json vendored
View File

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