美文网首页
vsCode写js的launch.json文件

vsCode写js的launch.json文件

作者: iTsung | 来源:发表于2019-06-18 16:08 被阅读0次

{

    // 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": "chrome",

            "request": "launch",

            "name": "Launch Chrome against localhost",

            "url": "http://localhost:8080",

            "file": "${workspaceFolder}/index.html",

            "sourceMaps": true,

            "webRoot": "${workspaceFolder}"

        }

    ]

}

相关文章

网友评论

      本文标题:vsCode写js的launch.json文件

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