()
| 442 | * Defaults merged on startup are not included. |
| 443 | */ |
| 444 | export function getPersistedSettings(): Partial<Settings> { |
| 445 | if (!_settings) { |
| 446 | _settings = read(); |
| 447 | } |
| 448 | |
| 449 | return _settings; |
| 450 | } |
| 451 | |
| 452 | export function get(): Settings { |
| 453 | if (!_settingsWithDefaults) { |
no test coverage detected