2019-10-07 21:33:33 +00:00
|
|
|
{
|
|
|
|
// 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": [
|
|
|
|
{
|
|
|
|
"type": "chrome",
|
|
|
|
"request": "launch",
|
|
|
|
"name": "Launch Chrome",
|
|
|
|
"url": "http://localhost:3000",
|
|
|
|
"webRoot": "${workspaceFolder}/test/website/public",
|
|
|
|
"pathMapping": {
|
|
|
|
"/_resources/themes/mantra": "${workspaceFolder}"
|
|
|
|
},
|
2021-05-11 00:37:22 +00:00
|
|
|
"sourceMaps": true,
|
2019-10-07 21:33:33 +00:00
|
|
|
"preLaunchTask": "Watch Debug",
|
|
|
|
"postDebugTask": "Stop Debug"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Listen for XDebug",
|
|
|
|
"type": "php",
|
|
|
|
"request": "launch",
|
2021-05-10 23:59:52 +00:00
|
|
|
"port": 9003,
|
2019-10-07 21:33:33 +00:00
|
|
|
"pathMappings": {
|
|
|
|
"/var/www/html": "${workspaceFolder}/test/website"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"compounds": [
|
|
|
|
{
|
|
|
|
"name": "Debug Theme",
|
|
|
|
"configurations": [
|
|
|
|
"Launch Chrome",
|
|
|
|
"Listen for XDebug"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
]
|
2021-05-10 23:59:52 +00:00
|
|
|
}
|