From 5f68d3fa51c97ae07df7def651da66f7f292e62d Mon Sep 17 00:00:00 2001 From: x2Skyz Date: Sun, 23 Nov 2025 18:15:54 +0700 Subject: [PATCH] debug --- ng-ttc-frontend/.vscode/launch.json | 35 ++++++++++++++++++++--------- 1 file changed, 24 insertions(+), 11 deletions(-) diff --git a/ng-ttc-frontend/.vscode/launch.json b/ng-ttc-frontend/.vscode/launch.json index 925af83..e8e08f9 100644 --- a/ng-ttc-frontend/.vscode/launch.json +++ b/ng-ttc-frontend/.vscode/launch.json @@ -1,20 +1,33 @@ +// { +// // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 +// "version": "0.2.0", +// "configurations": [ +// { +// "name": "ng serve", +// "type": "chrome", +// "request": "launch", +// "preLaunchTask": "npm: start", +// "url": "http://localhost:4200/" +// }, +// { +// "name": "ng test", +// "type": "chrome", +// "request": "launch", +// "preLaunchTask": "npm: test", +// "url": "http://localhost:9876/debug.html" +// } +// ] +// } { - // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 "version": "0.2.0", "configurations": [ + { - "name": "ng serve", + "name": "Launch Chrome against localhost", "type": "chrome", "request": "launch", - "preLaunchTask": "npm: start", - "url": "http://localhost:4200/" - }, - { - "name": "ng test", - "type": "chrome", - "request": "launch", - "preLaunchTask": "npm: test", - "url": "http://localhost:9876/debug.html" + "url": "http://localhost:4200", + "webRoot": "${workspaceFolder}" } ] }