Add basic logging, debugging and store.

This commit is contained in:
Patrick Fic
2025-03-11 15:49:22 -07:00
parent 87b261178c
commit 69c504c0c6
11 changed files with 2340 additions and 68 deletions

14
src/main/store/store.ts Normal file
View File

@@ -0,0 +1,14 @@
import Store from "electron-store";
const store = new Store({
defaults: {
filePaths: [],
runWatcherOnStartup: true,
polling: {
enabled: false,
pollingInterval: 30000,
},
},
});
export default store;