按 ctrl + shift + d , 然后点击左上角的小齿轮配置,把下面代码复制进去。

    在你的ts代码里面打上断点,点击绿色的小箭头开始调试即可。

    这个非常有用,比你使用 console.log 调试快很多。

    1. {
    2. // Use IntelliSense to learn about possible Node.js debug attributes.
    3. // Hover to view descriptions of existing attributes.
    4. // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
    5. "version": "0.2.0",
    6. "configurations": [
    7. {
    8. "type": "node",
    9. "request": "launch",
    10. "name": "启动调试",
    11. "program": "${workspaceRoot}/src/index.js",
    12. "outFiles": [
    13. "${workspaceRoot}/src/*.js"
    14. ],
    15. "sourceMaps": true
    16. },
    17. {
    18. "type": "node",
    19. "request": "attach",
    20. "name": "附加到进程",
    21. "address": "localhost",
    22. "port": 5858,
    23. "outFiles": [],
    24. "sourceMaps": true
    25. }
    26. ]
    27. }