Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -458,15 +458,15 @@
"initialConfigurations": [
{
"name": "PowerShell Launch Current File",
"type": "powershell",
"type": "PowerShell",
"request": "launch",
"script": "${file}",
"args": [],
"cwd": "${file}"
},
{
"name": "PowerShell Launch Current File in Temporary Console",
"type": "powershell",
"type": "PowerShell",
"request": "launch",
"script": "${file}",
"args": [],
Expand All @@ -475,7 +475,7 @@
},
{
"name": "PowerShell Launch Current File w/Args Prompt",
"type": "powershell",
"type": "PowerShell",
"request": "launch",
"script": "${file}",
"args": [
Expand All @@ -485,14 +485,14 @@
},
{
"name": "PowerShell Attach to Host Process",
"type": "powershell",
"type": "PowerShell",
"request": "attach",
"processId": "${command:PickPSHostProcess}",
"runspaceId": 1
},
{
"name": "PowerShell Interactive Session",
"type": "powershell",
"type": "PowerShell",
"request": "launch",
"cwd": ""
}
Expand Down