aboutsummaryrefslogtreecommitdiffstats
path: root/packages/main/src/services/impl/ConfigPersistenceServiceImpl.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/main/src/services/impl/ConfigPersistenceServiceImpl.ts')
-rw-r--r--packages/main/src/services/impl/ConfigPersistenceServiceImpl.ts7
1 files changed, 4 insertions, 3 deletions
diff --git a/packages/main/src/services/impl/ConfigPersistenceServiceImpl.ts b/packages/main/src/services/impl/ConfigPersistenceServiceImpl.ts
index bffc38c..22b7d65 100644
--- a/packages/main/src/services/impl/ConfigPersistenceServiceImpl.ts
+++ b/packages/main/src/services/impl/ConfigPersistenceServiceImpl.ts
@@ -24,9 +24,10 @@ import JSON5 from 'json5';
24import throttle from 'lodash-es/throttle'; 24import throttle from 'lodash-es/throttle';
25import { join } from 'path'; 25import { join } from 'path';
26 26
27import type { ConfigPersistenceService, ReadConfigResult } from '../ConfigPersistenceService'; 27import type { ConfigPersistenceService, ReadConfigResult } from '../ConfigPersistenceService.js';
28import type { ConfigSnapshotOut } from '../../stores/Config'; 28import type { ConfigSnapshotOut } from '../../stores/Config.js';
29import { Disposer, getLogger } from '../../utils'; 29import { Disposer } from '../../utils/disposer.js';
30import { getLogger } from '../../utils/logging.js';
30 31
31const log = getLogger('configPersistence'); 32const log = getLogger('configPersistence');
32 33