blossom-cloudron/.vscode/launch.json

37 lines
1018 B
JSON
Raw Normal View History

2024-11-04 15:09:32 +00:00
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "dev",
"type": "node",
"request": "launch",
"args": ["./src/index.ts"],
"runtimeArgs": ["--loader", "@swc-node/register/esm"],
"cwd": "${workspaceRoot}",
"protocol": "inspector",
"internalConsoleOptions": "openOnSessionStart",
"outputCapture": "std",
"env": {
"DEBUG": "blossom-server,blossom-server:*"
}
},
{
"name": "start",
"type": "node",
"request": "launch",
"args": ["./build/index.js"],
"cwd": "${workspaceRoot}",
"protocol": "inspector",
"internalConsoleOptions": "openOnSessionStart",
"outputCapture": "std",
"env": {
"DEBUG": "blossom-server,blossom-server:*",
"DEBUG_COLORS": "1"
}
}
]
}