1
0
mirror of https://github.com/bitwarden/directory-connector synced 2026-01-21 03:43:49 +00:00

Updated to handle breaking change from eletron-store-v11

This commit is contained in:
Jared McCannon
2025-12-12 16:26:28 -06:00
parent d9a5d8c203
commit de8dc9789d
2 changed files with 2 additions and 3 deletions

View File

@@ -1,12 +1,11 @@
import * as fs from "fs";
import { ipcMain } from "electron";
import Store from "electron-store";
import { StorageService } from "@/jslib/common/src/abstractions/storage.service";
import { NodeUtils } from "@/jslib/common/src/misc/nodeUtils";
// eslint-disable-next-line
const Store = require("electron-store");
export class ElectronStorageService implements StorageService {
private store: any;

View File

@@ -5,7 +5,7 @@
},
"compilerOptions": {
"pretty": true,
"moduleResolution": "node",
"moduleResolution": "bundler",
"noImplicitAny": true,
"target": "ES2016",
"module": "ES2020",