in vscode-extension/src/utils.ts [77:83]
export function deleteSessionFile(sessionFilePath: string): void { try { fs.unlinkSync(sessionFilePath); } catch (e) { // TODO: Be more specific about what we're catching } }