let cwdUri: URI | undefined;
if (normalized.cwd) {
const expandedCwd = untildify(normalized.cwd, userHome);
if (isAbsolute(expandedCwd)) {
// Use absolute path directly
cwdUri = URI.file(expandedCwd);
// Resolve relative to workspace root
cwdUri = joinPath(workspaceRootUri, expandedCwd);