• electron node.js 在 vscode 设置 调试 Debug


    在当前工程下,添加一个 .vscode/launch.json 文件

    {
        // Use IntelliSense to learn about possible attributes.
        // Hover to view descriptions of existing attributes.
        // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
        "version": "0.2.0",
        "configurations": [
            {
                "type": "node",
                "request": "launch",
                "name": "Launch Program",
                "cwd": "${workspaceRoot}",
                "skipFiles": [
                    "<node_internals>/**"
                ],
                "runtimeExecutable": "${workspaceRoot}/node_modules/.bin/electron",
            "windows": {
              "runtimeExecutable": "${workspaceRoot}/node_modules/.bin/electron.cmd"
            },
            "args" : ["."],
            "outputCapture": "std"
            }
        ]
    }

    或者使用快捷键F5,然后选择Node.js,会自动生成该文件
    接下来,就可以点击菜单Debug -> Start Debugging,也可以直接按快捷键F5,启动程序

     

  • 相关阅读:
    trie树
    基数排序
    CF724E Goods transportation 最小割 DP
    [CQOI2009]跳舞 网络流
    NOIP2018爆零记
    斜率优化
    CF311B Cats Transport 斜率优化DP
    逆元
    卡特兰数
    【BZOJ】【1565】【NOI2009】PVZ 植物大战僵尸
  • 原文地址:https://www.cnblogs.com/abc789/p/12001513.html
Copyright © 2020-2023  润新知