Skip to content
This repository was archived by the owner on Dec 6, 2022. It is now read-only.

Commit 6b5a047

Browse files
committed
Clean up example configs - fix #673
1 parent 9e4d826 commit 6b5a047

1 file changed

Lines changed: 2 additions & 11 deletions

File tree

README.md

Lines changed: 2 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -64,10 +64,9 @@ Two example `launch.json` configs with `"request": "launch"`. You must specify e
6464
"webRoot": "${workspaceFolder}/wwwroot"
6565
},
6666
{
67-
"name": "Launch index.html (disable sourcemaps)",
67+
"name": "Launch index.html",
6868
"type": "chrome",
6969
"request": "launch",
70-
"sourceMaps": false,
7170
"file": "${workspaceFolder}/index.html"
7271
},
7372
]
@@ -99,21 +98,13 @@ An example `launch.json` file for an "attach" config.
9998
{
10099
"version": "0.1.0",
101100
"configurations": [
102-
{
103-
"name": "Attach",
104-
"type": "chrome",
105-
"request": "attach",
106-
"port": 9222,
107-
"url": "<url of the open browser tab to connect to>",
108-
"webRoot": "${workspaceFolder}"
109-
},
110101
{
111102
"name": "Attach to url with files served from ./out",
112103
"type": "chrome",
113104
"request": "attach",
114105
"port": 9222,
115106
"url": "<url of the open browser tab to connect to>",
116-
"webRoot": "${workspaceFolder}"
107+
"webRoot": "${workspaceFolder}/out"
117108
}
118109
]
119110
}

0 commit comments

Comments
 (0)