Skip to content

Commit 38bf763

Browse files
fix initial launch config casing (#1781)
1 parent 723433b commit 38bf763

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -458,15 +458,15 @@
458458
"initialConfigurations": [
459459
{
460460
"name": "PowerShell Launch Current File",
461-
"type": "powershell",
461+
"type": "PowerShell",
462462
"request": "launch",
463463
"script": "${file}",
464464
"args": [],
465465
"cwd": "${file}"
466466
},
467467
{
468468
"name": "PowerShell Launch Current File in Temporary Console",
469-
"type": "powershell",
469+
"type": "PowerShell",
470470
"request": "launch",
471471
"script": "${file}",
472472
"args": [],
@@ -475,7 +475,7 @@
475475
},
476476
{
477477
"name": "PowerShell Launch Current File w/Args Prompt",
478-
"type": "powershell",
478+
"type": "PowerShell",
479479
"request": "launch",
480480
"script": "${file}",
481481
"args": [
@@ -485,14 +485,14 @@
485485
},
486486
{
487487
"name": "PowerShell Attach to Host Process",
488-
"type": "powershell",
488+
"type": "PowerShell",
489489
"request": "attach",
490490
"processId": "${command:PickPSHostProcess}",
491491
"runspaceId": 1
492492
},
493493
{
494494
"name": "PowerShell Interactive Session",
495-
"type": "powershell",
495+
"type": "PowerShell",
496496
"request": "launch",
497497
"cwd": ""
498498
}

0 commit comments

Comments
 (0)