Create settings.ts

This commit is contained in:
TheThomaas 2026-02-05 15:25:15 +01:00
parent 5fc49bb3e9
commit 4c169abc8c

View file

@ -0,0 +1,7 @@
import Store from "electron-store";
import { DEFAULT_SETTINGS } from "../data/default_settings.js";
const schema = DEFAULT_SETTINGS;
const store = new Store({schema});
export { store as appSettings }