{ // 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": [ { "name": "Launch built-in server and debug", "type": "php", "request": "launch", "runtimeArgs": [ "-S", "localhost:8000", "-t", "." ], "port": 9003, "serverReadyAction": { "action": "openExternally" } }, { "name": "Debug current script in console", "type": "php", "request": "launch", "program": "${file}", "cwd": "${fileDirname}", "externalConsole": false, "port": 9003 }, { "name": "Listen for Xdebug", "type": "php", "request": "launch", "port": 9003, "pathMappings": { "/var/www/html": "${workspaceFolder}/sternwarte" } }, { "name": "Debug checkfuehrung.js", "type": "node", "request": "launch", "program": "${workspaceFolder}/sternwarte/checkfuehrung/checkfuehrung.js", "args": ["-d", "2"], "cwd": "${workspaceFolder}/sternwarte/checkfuehrung", "console": "integratedTerminal" } ] }