1. 程式人生 > >VS Code 編譯器的調試工具整理

VS Code 編譯器的調試工具整理

安裝 配置 type bsp node asc 整理 在外 source

1 debbugeer for chrome的使用

下載安裝,然後配置launch.json

{
                "name": "Chrome",//名稱
                "type": "chrome",
                "request": "launch",
                "sourceMaps": false,//不用配置服務器,使用file協議
                "file": "${file}" //啟動本頁面的環境變量
            }

  然後就就可以設置斷點啦(ps:貌似只能在外引的js裏面設置)

2 配置node服務

  

            {
                "type": "node",
                "request": "launch",
                "name": "node Program",
                "program": "${file}"
            }

  有其他好實用的插件歡迎推薦~

VS Code 編譯器的調試工具整理