in src/extension.ts [68:73]
function getFsPath(uri: vscode.Uri): string {
const fsPath = uri.fsPath;
return isWindows && !fsPath.match(/^[a-zA-Z]:/) ?
fsPath.replace(/\\/g, '/') : // Hack - undo the slash normalization that URI does when windows is the current platform
fsPath;
}