nsite-ts/.vscode/launch.json

34 lines
821 B
JSON
Raw Normal View History

2024-09-01 13:26:37 -05:00
{
"version": "0.2.0",
"configurations": [
{
2024-09-25 13:37:32 -05:00
"name": "dev",
2024-09-01 13:26:37 -05:00
"type": "node",
"request": "launch",
"args": ["./src/index.ts"],
"runtimeArgs": ["--loader", "@swc-node/register/esm"],
"cwd": "${workspaceRoot}",
"protocol": "inspector",
"internalConsoleOptions": "openOnSessionStart",
"outputCapture": "std",
"env": {
"DEBUG": "nsite,nsite:*"
}
2024-10-01 12:28:34 -05:00
},
{
"name": "dev-proxy",
"type": "node",
"request": "launch",
"args": ["./src/index.ts"],
"runtimeArgs": ["--loader", "@swc-node/register/esm"],
"cwd": "${workspaceRoot}",
"protocol": "inspector",
"internalConsoleOptions": "openOnSessionStart",
"outputCapture": "std",
"env": {
2024-10-04 10:32:57 -05:00
"DEBUG": "nsite,nsite:*"
2024-10-01 12:28:34 -05:00
}
2024-09-01 13:26:37 -05:00
}
]
}