(rootPath: string)
| 336 | } |
| 337 | |
| 338 | function getProjectIndexStatus(rootPath: string): ProjectDescriptor['indexStatus'] { |
| 339 | return getProject(rootPath)?.indexState.status ?? 'idle'; |
| 340 | } |
| 341 | |
| 342 | function buildProjectDescriptor(rootPath: string): ProjectDescriptor { |
| 343 | const resolvedRootPath = path.resolve(rootPath); |
no test coverage detected