Visual Studio Code环境设置配置(一)

{
    "version": "0.2.0",
    "configurations": [{
            "type": "chrome",
            "request": "launch",
            "name": "Launch Chrome against localhost",
            "url": "http://localhost:8080",
            "webRoot": "${workspaceRoot}"
        },
        {
            "type": "chrome",
            "request": "attach",
            "name": "Attach to Chrome",
            "port": 9222,
            "webRoot": "${workspaceRoot}"
        },
        {
            "name": "Launch index.html (disable sourcemaps)",
            "type": "chrome",
            "request": "launch",
            "sourceMaps": false,
            "file": "${workspaceRoot}/test.html"  //每次需要修改这里的文件地址
        }
    ]
}

Visual Studio Code环境设置配置(一)_第1张图片

你可能感兴趣的:(ArcGIS,ArcGIS,for,javascript)