()
| 107 | * @returns Debug configuration (defaults to disabled if not specified) |
| 108 | */ |
| 109 | export function getDebugConfig(): DebugConfig { |
| 110 | const config = loadConfig(); |
| 111 | return config.debug || { enabled: false }; |
| 112 | } |
| 113 | |
| 114 | /** |
| 115 | * Get the path to the configuration file |
no test coverage detected