zan-proxy
Version:
47 lines • 1.11 kB
JSON
{
// 使用 IntelliSense 了解相关属性。
// 悬停以查看现有属性的描述。
// 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Mocha Tests",
"program": "${workspaceFolder}/node_modules/mocha/bin/_mocha",
"args": [
"-u",
"tdd",
"--colors",
"-r",
"ts-node/register",
"--timeout",
"999999",
"${workspaceFolder}/test/**/**/*.spec.ts"
],
"env": {
"HOME": "/tmp/proxy-test"
},
"internalConsoleOptions": "openOnSessionStart"
},
{
"name": "Launch(ZanProxy)",
"type": "node",
"request": "launch",
"protocol": "inspector",
"sourceMaps": true,
"env": {
"DEBUG": "1",
},
"runtimeVersion": "8.11.1",
"args": [
"-r",
"ts-node/register",
"--nolazy",
"${workspaceRoot}/src/bin/index.ts",
"--no-update",
"--no-sync",
]
}
]
}