-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: added working
launch.json
for VSCode (#4037)
* fix: added working launch json for VScode * fix: removed unused env
- Loading branch information
1 parent
82e9f28
commit 9aefab2
Showing
1 changed file
with
10 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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/" | ||
} | ||
] | ||
} |