ToolJet/.vscode/launch.json

32 lines
826 B
JSON
Raw Normal View History

{
"version": "0.2.0",
"configurations": [
{
"name": "Launch Edge",
"request": "launch",
"type": "pwa-msedge",
"url": "http://localhost:8082",
"webRoot": "${workspaceFolder}"
},
{
"type": "node",
"request": "launch",
"name": "Server",
"args": [
"${workspaceFolder}/server/src/main.ts"
],
"runtimeArgs": [
"--nolazy",
"-r",
"ts-node/register",
"-r",
"tsconfig-paths/register"
],
"sourceMaps": true,
"cwd": "${workspaceRoot}/server",
"console": "integratedTerminal",
"protocol": "inspector"
}
]
}