This commit is contained in:
Andras Schmelczer 2025-02-19 20:52:05 +00:00
parent dd6f63f357
commit 00fa7b1c8b
No known key found for this signature in database
GPG key ID: FC8F2C3D3D1A718C
5 changed files with 7 additions and 14 deletions

View file

@ -61,7 +61,6 @@ export class HistoryView extends ItemView {
}
element.createEl("span", {
// eslint-disable-next-line @typescript-eslint/no-unsafe-type-assertion
text: entry.relativePath
});

View file

@ -6,9 +6,6 @@
"noImplicitAny": true,
"moduleResolution": "bundler",
"strictNullChecks": true,
"lib": [
"DOM",
"ESNext"
]
"lib": ["DOM", "ESNext"]
}
}
}

View file

@ -25,4 +25,4 @@
"webpack": "^5.98.0",
"webpack-cli": "^6.0.1"
}
}
}

View file

@ -1,4 +1,4 @@
import { RelativePath } from "../database/document-metadata";
import type { RelativePath } from "../database/document-metadata";
const locked = new Set<RelativePath>();
const waiters = new Map<RelativePath, (() => void)[]>();

View file

@ -7,9 +7,6 @@
"moduleResolution": "bundler",
"strictNullChecks": true,
"allowSyntheticDefaultImports": true,
"lib": [
"DOM",
"ESNext"
]
},
}
"lib": ["DOM", "ESNext"]
}
}