(cwd: string)
| 70 | // fallback. The CortexKit target normalizes to .jsonc; we still detect a |
| 71 | // pre-existing .json at the target for resilience. |
| 72 | function getProjectConfigPaths(cwd: string): string[] { |
| 73 | const basePath = cortexKitProjectConfigBasePath(cwd); |
| 74 | return [`${basePath}.jsonc`, `${basePath}.json`]; |
| 75 | } |
| 76 | |
| 77 | function getUserConfigPaths(): string[] { |
| 78 | const basePath = cortexKitUserConfigBasePath(); |
no test coverage detected