From e2e50cc7fafc3193747d10961f7007296f4b8c39 Mon Sep 17 00:00:00 2001 From: Tyler Leonhardt Date: Wed, 6 Mar 2019 17:03:08 -0800 Subject: [PATCH] fix initial launch config casing --- package.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/package.json b/package.json index f8e9726f35..955d8b2e73 100644 --- a/package.json +++ b/package.json @@ -458,7 +458,7 @@ "initialConfigurations": [ { "name": "PowerShell Launch Current File", - "type": "powershell", + "type": "PowerShell", "request": "launch", "script": "${file}", "args": [], @@ -466,7 +466,7 @@ }, { "name": "PowerShell Launch Current File in Temporary Console", - "type": "powershell", + "type": "PowerShell", "request": "launch", "script": "${file}", "args": [], @@ -475,7 +475,7 @@ }, { "name": "PowerShell Launch Current File w/Args Prompt", - "type": "powershell", + "type": "PowerShell", "request": "launch", "script": "${file}", "args": [ @@ -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": "" }