summaryrefslogtreecommitdiff
path: root/.vscode/launch.json
blob: 09bacd22675601cb98c767b4cfc2e1a8cc2ef577 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
   "version": "0.2.0",
   "configurations": [
      {
         "name": "Listen for XDebug",
         "type": "php",
         "request": "launch",
         "pathMappings": {
            "/var/www/html/books": "${workspaceRoot}",
         },
         "port": 9000
     },
      {
         "name": "Launch Chrome",
         "request": "launch",
         "type": "chrome",
         "pathMapping": {
            "/tt-rss/": "${workspaceFolder}"
         },
         "urlFilter": "*/books/*",
         "runtimeExecutable": "chrome.exe",
      }
      ]
}