blob: a67e9316bd56fb47634abfbe38ca613ef60a9d14 [file] [log] [blame]
Lathish095fb8c2021-01-28 17:14:19 +00001{
2 "version": "0.2.0",
3 "configurations": [
4 {
5 "type": "chrome",
6 "request": "launch",
7 "name": "Launch Chrome against localhost",
8 "url": "http://localhost:9876",
9 "webRoot": "${workspaceFolder}"
10 },
11 {
12 "type": "chrome",
13 "request": "launch",
14 "name": "Jasmine Debugger",
15 "url": "http://localhost:9876/debug.html",
16 "webRoot": "${workspaceFolder}",
17 "sourceMaps": true,
18 "sourceMapPathOverrides": {
19 "webpack:/*": "${webRoot}/*",
20 "/./*": "${webRoot}/*",
21 "/src/*": "${webRoot}/*",
22 "./*": "${webRoot}/*",
23 "_karma_webpack_/*": "${webRoot}/*",
24 "/./~/*": "${workspaceFolder}/node_modules/*"
25 }
26 }
27 ]
28}