/
githubmirror
/
gutenberg
Обзор
Документация
Войти
/
githubmirror
/
gutenberg
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
trunk
.vscode/launch-example.json
31 строка
690 B
Jorge Costa
Replaces usages of workspaceRoot with workspaceFolder. (#34887)
17 сен 2021, 07:48
Не верифицирован
17 сен 2021, 07:48
1059d10
Код
Авторство
О чём код?
{ "version": "0.2.0", "configurations": [ { "name": "Listen for Xdebug", "type": "php", "request": "launch", "port": 9003, "pathMappings": { "/var/www/html/wp-content/plugins/gutenberg": "${workspaceFolder}" } }, { "type": "node", "request": "launch", "name": "Debug current e2e test", "program": "${workspaceFolder}/node_modules/@wordpress/scripts/bin/wp-scripts.js", "args": [ "test-e2e", "--config=${workspaceFolder}/packages/e2e-tests/jest.config.js", "--verbose=true", "--runInBand", "--watch", "${file}" ], "console": "integratedTerminal", "internalConsoleOptions": "neverOpen", "trace": "all" } ] }