Exclude azurerepos: files from JS/TS intellisense (#187521)

Fixes #186385
This commit is contained in:
Matt Bierner
2023-07-11 08:45:12 -07:00
committed by GitHub
parent c619d8e41c
commit 00105d2ddb

View File

@@ -10,6 +10,7 @@ export const file = 'file';
export const untitled = 'untitled';
export const git = 'git';
export const github = 'github';
export const azurerepos = 'azurerepos';
/** Live share scheme */
export const vsls = 'vsls';
@@ -39,4 +40,5 @@ export const disabledSchemes = new Set([
git,
vsls,
github,
azurerepos,
]);