mirror of
https://github.com/hzrd149/nsite-gateway.git
synced 2025-06-23 20:05:03 +00:00
35 lines
859 B
JSON
35 lines
859 B
JSON
{
|
|
"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": "nsite,nsite:*"
|
|
}
|
|
},
|
|
{
|
|
"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": {
|
|
"DEBUG": "nsite,nsite:*",
|
|
"ENABLE_SCREENSHOTS": "true"
|
|
}
|
|
}
|
|
]
|
|
}
|