Hi I am trying to debug the application in visual studio code but i am unable to debug, its showing me error message 'configured debug type'chrome' is not supported'.
Following is launch.json file code
{
// 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": "chrome",
"request": "attach",
"name": "Attach to Chrome",
"port": 4200,
"webRoot": "${workspaceFolder}"
}
]
}