美文网首页nestjsNest.js
NestJS VSCode debugger

NestJS VSCode debugger

作者: LOVE信 | 来源:发表于2018-12-27 08:35 被阅读1次

launch.json 配置

{
    "version": "0.2.0",
    "configurations": [
        {
            "type": "node",
            "request": "launch",
            "name": "Debug Nest Framework",
            "args": ["${workspaceFolder}/src/main.ts"],
            "runtimeArgs": ["--nolazy", "-r", "ts-node/register"],
            "sourceMaps": true,
            "cwd": "${workspaceRoot}",
            "protocol": "inspector",
            "console": "integratedTerminal"
        }
    ]
}

相关文章

网友评论

    本文标题:NestJS VSCode debugger

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