1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-21 10:43:35 +00:00

Add jslib as a "real" dependency (#951)

* Add jslib as a dependency

* Cleanup tsconfig, webpack, add jslib-angular to package.json

* Update all import paths

* Add back @types/node.

* Lint

* Remove dummy module

* Remove merge conflict

* Group imports

* Bump jslib
This commit is contained in:
Oscar Hinton
2021-06-07 20:13:58 +02:00
committed by GitHub
parent f15e78b91d
commit b12d0387f6
149 changed files with 1303 additions and 1213 deletions

View File

@@ -1,4 +1,4 @@
import { StorageService } from 'jslib/abstractions/storage.service';
import { StorageService } from 'jslib-common/abstractions/storage.service';
export class MemoryStorageService implements StorageService {
private store = new Map<string, any>();