美文网首页
Debugger for Chrome

Debugger for Chrome

作者: GSDLF | 来源:发表于2018-11-05 16:24 被阅读0次

    1.插件下载

    2.配置问题

    {

        "version": "0.2.0",

        "configurations": [

            {

                "name": "谷歌浏览器", //运行html文件,用谷歌浏览器打开   

                "type": "chrome",   

                "request": "launch",   

                "url": "${file}",   

                "sourceMaps": true,   

                "webRoot": "${workspaceRoot}" 

            },

            {

                "name": "nodeLauch", //单独调试js,即可以直接运行js   

                "type": "node",   

                "request": "launch",   

                "program": "${file}", //这个配置成你要调试的文件、${file}当前打开的文件   

                "stopOnEntry": false,   

                "args": [],   

                "cwd": "${workspaceRoot}",   

                "runtimeExecutable": null,   

                "runtimeArgs": [   

                    "--nolazy"   

                ],   

                "env": {   

                    "NODE_ENV": "development"   

                },   

                "console": "internalConsole",   

                "preLaunchTask": "",   

                "sourceMaps": false   

            }

        ]

    }

    亲测可用

    相关文章

      网友评论

          本文标题:Debugger for Chrome

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