|
1 | 1 | import fs from 'fs';
|
2 | 2 | import path from 'path';
|
3 |
| -import { shallowEqualObjects } from '../shared/helperFunctions.js'; |
4 |
| -import { applicationSettingDesc } from '../shared/settings/application.js'; |
5 |
| -import { buttonSettingDesc } from '../shared/settings/button.js'; |
6 |
| -import { cameraSettingConverter, cameraSettingDesc } from '../shared/settings/camera.js'; |
7 |
| -import { controlSettingDesc } from '../shared/settings/control.js'; |
8 |
| -import { defaultSettings } from '../shared/settings/defaultSettings.js'; |
9 |
| -import { applySettings, extractSettings } from '../shared/settings/helper.js'; |
10 |
| -import { photoSettingConverter, photoSettingDesc } from '../shared/settings/photo.js'; |
11 |
| -import { previewSettingDesc } from '../shared/settings/preview.js'; |
12 |
| -import { streamSettingDesc } from '../shared/settings/stream.js'; |
13 |
| -import { GenericSettingDesc, Setting } from '../shared/settings/types.js'; |
14 |
| -import { videoSettingDesc } from '../shared/settings/video.js'; |
15 |
| -import { curDirName } from './common.js'; |
16 |
| -import { createLogger } from './logger.js'; |
| 3 | +import { shallowEqualObjects } from '../shared/helperFunctions'; |
| 4 | +import { applicationSettingDesc } from '../shared/settings/application'; |
| 5 | +import { buttonSettingDesc } from '../shared/settings/button'; |
| 6 | +import { cameraSettingConverter, cameraSettingDesc } from '../shared/settings/camera'; |
| 7 | +import { controlSettingDesc } from '../shared/settings/control'; |
| 8 | +import { defaultSettings } from '../shared/settings/defaultSettings'; |
| 9 | +import { applySettings, extractSettings } from '../shared/settings/helper'; |
| 10 | +import { photoSettingConverter, photoSettingDesc } from '../shared/settings/photo'; |
| 11 | +import { previewSettingDesc } from '../shared/settings/preview'; |
| 12 | +import { streamSettingDesc } from '../shared/settings/stream'; |
| 13 | +import { GenericSettingDesc, Setting } from '../shared/settings/types'; |
| 14 | +import { videoSettingDesc } from '../shared/settings/video'; |
| 15 | +import { curDirName } from './common'; |
| 16 | +import { createLogger } from './logger'; |
17 | 17 |
|
18 | 18 | const logger = createLogger('settings');
|
19 | 19 | const settingsFolder = path.join(curDirName, 'settings');
|
|
0 commit comments