mantra/.vscode/launch.json

58 lines
1.7 KiB
JSON
Raw Normal View History

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": [
{
"args": [
"Watch"
],
"name": "Execute Watch Task",
"program": "${workspaceFolder}/node_modules/gulp/bin/gulp.js",
"request": "launch",
"skipFiles": [
"<node_internals>/**"
],
"type": "pwa-node",
"sourceMaps": true,
"outFiles": [
"${workspaceFolder}/gulpfile.ts",
"${workspaceFolder}/gulp/**/*.ts",
"!**/node_modules/**"
]
},
2019-10-07 21:33:33 +00:00
{
2022-03-23 09:49:27 +00:00
"type": "pwa-chrome",
2019-10-07 21:33:33 +00:00
"request": "launch",
2022-03-23 09:49:27 +00:00
"name": "Launch Chrome",
2019-10-07 21:33:33 +00:00
"url": "http://localhost:3000",
"webRoot": "${workspaceFolder}/test/website/public",
"pathMapping": {
"/_resources/themes/mantra": "${workspaceFolder}"
},
"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": [
2022-03-23 09:49:27 +00:00
"Launch Chrome",
2019-10-07 21:33:33 +00:00
"Listen for XDebug"
]
}
]
2021-05-10 23:59:52 +00:00
}