mirror of
https://github.com/twentyhq/twenty.git
synced 2024-12-23 03:51:36 +03:00
fix: added working launch.json
for VSCode (#4037)
* fix: added working launch json for VScode * fix: removed unused env
This commit is contained in:
parent
82e9f28383
commit
9aefab2297
20
.vscode/launch.json
vendored
20
.vscode/launch.json
vendored
@ -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/"
|
||||
}
|
||||
]
|
||||
}
|
Loading…
Reference in New Issue
Block a user