()
| 130 | } |
| 131 | |
| 132 | export function getPrimaryConfigFilePath(): string { |
| 133 | const configYamlPath = getConfigYamlPath(); |
| 134 | if (fs.existsSync(configYamlPath)) { |
| 135 | return configYamlPath; |
| 136 | } |
| 137 | return getConfigJsonPath(); |
| 138 | } |
| 139 | |
| 140 | export function getConfigTsPath(): string { |
| 141 | const p = path.join(getContinueGlobalPath(), "config.ts"); |
no test coverage detected