Skip to content

Commit

Permalink
fix: added working launch.json for VSCode (#4037)
Browse files Browse the repository at this point in the history
* fix: added working launch json for VScode

* fix: removed unused env
  • Loading branch information
rostaklein authored Feb 20, 2024
1 parent 82e9f28 commit 9aefab2
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -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/"
}
]
}

0 comments on commit 9aefab2

Please sign in to comment.