fix(vscode): include mtime in fs stat proxy (#1188)

Co-authored-by: Isaac Sanchez <isanchez-hawkins@arize.com>
This commit is contained in:
Isaac Sanchez-Hawkins
2026-05-12 11:06:40 +03:00
committed by GitHub
co-authored by Isaac Sanchez
parent 222d1b7f51
commit f2ce138e86
@@ -79,6 +79,7 @@ export const tryHandleLocalFsProxy = async (method: string, requestPath: string)
path: normalizeFsPath(resolution.resolvedPath),
isFile: true,
size: stats.size,
mtimeMs: stats.mtimeMs,
})),
};
}