mirror of
https://github.com/aljazceru/claude-code-viewer.git
synced 2026-01-27 17:34:31 +01:00
5 lines
149 B
TypeScript
5 lines
149 B
TypeScript
import { homedir } from "node:os";
|
|
import { resolve } from "node:path";
|
|
|
|
export const claudeProjectPath = resolve(homedir(), ".claude", "projects");
|