Files
HexTowerDefense3/.vscode/launch.json
2025-05-17 15:55:08 +02:00

21 lines
664 B
JSON

{
// 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": "firefox",
"request": "launch",
"name": "Launch in Firefox",
"url": "http://localhost:4200",
"preLaunchTask": "npm: start",
"sourceMaps": true,
"trace": true,
"webRoot": "${workspaceFolder}",
"outFiles": [
"${workspaceFolder}/dist/**/*.js"
]
}
]
}