美文网首页
vscode node debug launch.json

vscode node debug launch.json

作者: 一只重拾梦想的小水 | 来源:发表于2020-02-12 18:43 被阅读0次
{
  "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
    }
  ]
}

相关文章

网友评论

      本文标题:vscode node debug launch.json

      本文链接:https://www.haomeiwen.com/subject/mxicfhtx.html