diff --git a/extensions/npm/src/npmMain.ts b/extensions/npm/src/npmMain.ts index d03a72a72fc..c8cfc11fb11 100644 --- a/extensions/npm/src/npmMain.ts +++ b/extensions/npm/src/npmMain.ts @@ -78,7 +78,7 @@ export async function activate(context: vscode.ExtensionContext): Promise } const lines = outputMatch.regexMatch[1]; - const fixes: vscode.TerminalQuickFixExecuteTerminalCommand[] = []; + const fixes: vscode.TerminalQuickFixTerminalCommand[] = []; for (const line of lines.split('\n')) { // search from the second char, since the lines might be prefixed with // "npm ERR!" which comes before the actual command suggestion.