25 lines
419 B
TypeScript
25 lines
419 B
TypeScript
import Store from "electron-store";
|
|
const store = new Store({
|
|
defaults: {
|
|
settings: {
|
|
filepaths: [],
|
|
runWatcherOnStartup: true,
|
|
polling: {
|
|
enabled: false,
|
|
pollingInterval: 30000,
|
|
},
|
|
},
|
|
app: {
|
|
windowBounds: {
|
|
width: 800,
|
|
height: 600,
|
|
x: undefined,
|
|
y: undefined,
|
|
},
|
|
user: null,
|
|
},
|
|
},
|
|
});
|
|
|
|
export default store;
|