From 38bf76390439847646310f1e716c61cd15b4d09c Mon Sep 17 00:00:00 2001 From: Tyler James Leonhardt Date: Thu, 7 Mar 2019 16:53:04 -0800 Subject: [PATCH] fix initial launch config casing (#1781) --- 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": "" }