(target: SetupTarget)
| 103 | } |
| 104 | |
| 105 | function getConfigPath(target: SetupTarget): string { |
| 106 | if (target === "cursor") return getCursorConfigPath(); |
| 107 | if (target === "claude") return getClaudeConfigPath(); |
| 108 | if (target === "claude-cli") return getClaudeCliConfigPath(); |
| 109 | return getCodexConfigPath(); |
| 110 | } |
| 111 | |
| 112 | function setupTarget(target: SetupTarget): void { |
| 113 | if (target === "codex") { |
no test coverage detected