@kkdev92/vscode-ext-kit - v4.1.1
    Preparing search index...

    Interface DocumentLocation

    Where a document lives.

    interface DocumentLocation {
        fsPath: string;
        uri: WatchedUri;
    }
    Index
    fsPath: string

    The document's fsPath. Populated for local files, Remote-SSH/WSL/ Codespaces (vscode-remote) and virtual file systems (vscode-vfs) alike, so treat it as an identity or display string unless uri.scheme is 'file'.

    The full URI, scheme included. Check this when the scheme matters.