()
| 897 | * @returns Merged settings from all available sources (always returns at least empty object) |
| 898 | */ |
| 899 | export function getInitialSettings(): SettingsJson { |
| 900 | const { settings } = getSettingsWithErrors() |
| 901 | return settings || {} |
| 902 | } |
| 903 | |
| 904 | /** |
| 905 | * @deprecated Use getInitialSettings() instead. This alias exists for backwards compatibility. |
no test coverage detected