import ConfigStore from 'configstore'; import Config from '../config'; class ConfigStoreService { private configStore: ConfigStore; constructor() { this.configStore = new ConfigStore(Config.PROJECT_NAME); } public set(key: string, value: any) { this.configStore.set(key, value); } public get(key: string) { return this.configStore.get(key); } } export default new ConfigStoreService();