(projectDir: string)
| 43 | |
| 44 | /** Path to the config file for a project rooted at `projectDir`. */ |
| 45 | export function projectConfigPath(projectDir: string): string { |
| 46 | return join(resolve(projectDir), PROJECT_CONFIG_FILENAME); |
| 47 | } |
| 48 | |
| 49 | /** Read `hyperframes.json` from a project directory. */ |
| 50 | export function readProjectConfig(projectDir: string): ProjectConfig | undefined { |
no test coverage detected