{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Launch Program",
"program": "${workspaceFolder}/lib/index.js",
"preLaunchTask": "tsc: build - tsconfig.json",
"outFiles": ["${workspaceFolder}/lib/**/*.js"],
"env": {
"PORT": "3008",
"LOG_DIR": "./.logs/",
"REDIS_HOSTS": "x",
"ETCD_NAMESPACE": "x",
"ETCD_HOSTS": "x",
"APP_ENV": "x",
"APP_REGION": "x"
},
"runtimeExecutable": "nodemon",
"restart": true
}
]
}
网友评论