Skip to content

Commit bd06552

Browse files
committed
chore(NA): remove unused ts-error statements
1 parent 9b514e9 commit bd06552

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

packages/kbn-optimizer/src/node/cache.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,23 +49,19 @@ export class Cache {
4949
this.codes = LmdbStore.open({
5050
name: 'codes',
5151
path: CACHE_DIR,
52-
// @ts-expect-error See https://github.com/DoctorEvidence/lmdb-store/pull/18
5352
maxReaders: 500,
5453
});
5554

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

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

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

0 commit comments

Comments
 (0)