fix: added working launch.json for VSCode (#4037)
* fix: added working launch json for VScode * fix: removed unused env
This commit is contained in:
20
.vscode/launch.json
vendored
20
.vscode/launch.json
vendored
@ -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
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user