Skip to content

Commit ccb7d76

Browse files
fix initial launch config casing (#1781)
1 parent d11eb7d commit ccb7d76

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
@@ -453,15 +453,15 @@
453453
"initialConfigurations": [
454454
{
455455
"name": "PowerShell Launch Current File",
456-
"type": "powershell",
456+
"type": "PowerShell",
457457
"request": "launch",
458458
"script": "${file}",
459459
"args": [],
460460
"cwd": "${file}"
461461
},
462462
{
463463
"name": "PowerShell Launch Current File in Temporary Console",
464-
"type": "powershell",
464+
"type": "PowerShell",
465465
"request": "launch",
466466
"script": "${file}",
467467
"args": [],
@@ -470,7 +470,7 @@
470470
},
471471
{
472472
"name": "PowerShell Launch Current File w/Args Prompt",
473-
"type": "powershell",
473+
"type": "PowerShell",
474474
"request": "launch",
475475
"script": "${file}",
476476
"args": [
@@ -480,14 +480,14 @@
480480
},
481481
{
482482
"name": "PowerShell Attach to Host Process",
483-
"type": "powershell",
483+
"type": "PowerShell",
484484
"request": "attach",
485485
"processId": "${command:PickPSHostProcess}",
486486
"runspaceId": 1
487487
},
488488
{
489489
"name": "PowerShell Interactive Session",
490-
"type": "powershell",
490+
"type": "PowerShell",
491491
"request": "launch",
492492
"cwd": ""
493493
}

0 commit comments

Comments
 (0)