(projectRoot: string)
| 83 | * Get the .codegraph directory path for a project |
| 84 | */ |
| 85 | export function getCodeGraphDir(projectRoot: string): string { |
| 86 | return path.join(projectRoot, codeGraphDirName()); |
| 87 | } |
| 88 | |
| 89 | /** |
| 90 | * Check if a project has been initialized with CodeGraph |
no test coverage detected