()
| 450 | } |
| 451 | |
| 452 | export function get(): Settings { |
| 453 | if (!_settingsWithDefaults) { |
| 454 | loadSettingsWithDefaults(); |
| 455 | } |
| 456 | |
| 457 | // biome-ignore lint/style/noNonNullAssertion: just loaded |
| 458 | return _settingsWithDefaults!; |
| 459 | } |
| 460 | |
| 461 | export function set(path: string[], value: string | number | boolean | KeyValue): void { |
| 462 | // biome-ignore lint/suspicious/noExplicitAny: auto-parsing |
no test coverage detected