(projectRoot: string)
| 90 | |
| 91 | /** Absolute path to the daemon pid lockfile for `projectRoot`. */ |
| 92 | export function getDaemonPidPath(projectRoot: string): string { |
| 93 | return path.join(getCodeGraphDir(projectRoot), 'daemon.pid'); |
| 94 | } |
| 95 | |
| 96 | /** Structured contents of the pid lockfile. */ |
| 97 | export interface DaemonLockInfo { |
no test coverage detected