mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-27 20:46:14 +00:00
31 lines
888 B
JSON
31 lines
888 B
JSON
{
|
|
// Use IntelliSense to learn about possible attributes.
|
|
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "Chill Debug",
|
|
"type": "php",
|
|
"request": "launch",
|
|
"port": 9000,
|
|
"pathMappings": {
|
|
"/var/www/html": "${workspaceFolder}"
|
|
},
|
|
"preLaunchTask": "symfony"
|
|
},
|
|
{
|
|
"name": "Yarn Encore Dev (Watch)",
|
|
"type": "node-terminal",
|
|
"request": "launch",
|
|
"command": "yarn encore dev --watch",
|
|
"cwd": "${workspaceFolder}"
|
|
}
|
|
],
|
|
"compounds": [
|
|
{
|
|
"name": "Chill Debug + Yarn Encore Dev (Watch)",
|
|
"configurations": ["Chill Debug", "Yarn Encore Dev (Watch)"]
|
|
}
|
|
]
|
|
}
|