Skip to content

Commit

Permalink
fix initial launch config casing (#1781)
Browse files Browse the repository at this point in the history
  • Loading branch information
TylerLeonhardt committed Mar 8, 2019
1 parent 723433b commit 38bf763
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions package.json
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

0 comments on commit 38bf763

Please sign in to comment.