Add basic logging, debugging and store.
This commit is contained in:
14
src/main/store/store.ts
Normal file
14
src/main/store/store.ts
Normal 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;
|
||||
Reference in New Issue
Block a user