.vscode/launch.json

{
    // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
    "version": "0.2.0",
    "configurations": [
    {
        "name": "Launch Current File",
        "type": "PowerShell",
        "request": "launch",
        "script": "${file}",
        "cwd": "${workspaceFolder}"
    },
        {
            "name": "Attach And Debug",
            "type": "PowerShell",
            "request": "attach",
            "runspaceId": 1
        }
    ]
}