Skip to content

Commit

Permalink
chore(NA): remove unused ts-error statements
Browse files Browse the repository at this point in the history
  • Loading branch information
mistic committed Nov 18, 2020
1 parent 9b514e9 commit bd06552
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions packages/kbn-optimizer/src/node/cache.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,23 +49,19 @@ export class Cache {
this.codes = LmdbStore.open({
name: 'codes',
path: CACHE_DIR,
// @ts-expect-error See https://github.com/DoctorEvidence/lmdb-store/pull/18
maxReaders: 500,
});

// @ts-expect-error See https://github.com/DoctorEvidence/lmdb-store/pull/18
this.atimes = this.codes.openDB({
name: 'atimes',
encoding: 'string',
});

// @ts-expect-error See https://github.com/DoctorEvidence/lmdb-store/pull/18
this.mtimes = this.codes.openDB({
name: 'mtimes',
encoding: 'string',
});

// @ts-expect-error See https://github.com/DoctorEvidence/lmdb-store/pull/18
this.sourceMaps = this.codes.openDB({
name: 'sourceMaps',
encoding: 'msgpack',
Expand Down

0 comments on commit bd06552

Please sign in to comment.