()
| 810 | * @returns Merged settings from all available sources (always returns at least empty object) |
| 811 | */ |
| 812 | export function getInitialSettings(): SettingsJson { |
| 813 | const { settings } = getSettingsWithErrors() |
| 814 | return settings || {} |
| 815 | } |
| 816 | |
| 817 | /** |
| 818 | * @deprecated Use getInitialSettings() instead. This alias exists for backwards compatibility. |
no test coverage detected