Configure VS Code debug and tasks

This commit is contained in:
Felipe Santos
2022-06-15 21:10:49 +00:00
parent fa27f9dc63
commit 258ed150cd
6 changed files with 61 additions and 21 deletions
+5 -7
View File
@@ -1,15 +1,13 @@
{
// 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": [
{
"command": "yarn start",
"name": "Run yarn start",
"type": "pwa-chrome",
"request": "launch",
"type": "node-terminal",
"internalConsoleOptions": "openOnFirstSessionStart"
"name": "Launch Chrome against Home Assistant",
"url": "http://localhost:8123",
"webRoot": "${workspaceFolder}/dist",
"preLaunchTask": "Rollup & Home Assistant"
}
]
}