Skip to content

Commit

Permalink
fix: add missing question mark token for javascript config
Browse files Browse the repository at this point in the history
  • Loading branch information
johnsoncodehk committed Sep 7, 2022
1 parent 7264a8e commit 9b0c221
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -25,8 +25,8 @@ export async function getUserPreferences(
// @ts-ignore
includeCompletionsForImportStatements: config.suggest?.includeCompletionsForImportStatements ?? true,
includeCompletionsWithSnippetText: config.suggest?.includeCompletionsWithSnippetText ?? true,
includeCompletionsWithClassMemberSnippets: config.suggest?.classMemberSnippets.enabled ?? true,
includeCompletionsWithObjectLiteralMethodSnippets: config.suggest?.objectLiteralMethodSnippets.enabled ?? true,
includeCompletionsWithClassMemberSnippets: config.suggest?.classMemberSnippets?.enabled ?? true,
includeCompletionsWithObjectLiteralMethodSnippets: config.suggest?.objectLiteralMethodSnippets?.enabled ?? true,
allowIncompleteCompletions: true,
// @ts-ignore
displayPartsForJSDoc: true,
Expand Down

0 comments on commit 9b0c221

Please sign in to comment.