Skip to content

Commit

Permalink
fix type-coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
Logicer16 committed Feb 4, 2024
1 parent 110c50a commit 757c0ac
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,8 @@
"ignoreCatch": true,
"reportSemanticError": true,
"ignoreFiles": [
"build/**/*"
"build/**/*",
"vite.config.ts.*"
]
}
}
2 changes: 1 addition & 1 deletion src/lib/ServiceWorker/register.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*/
import {fetchUpdatedServiceWorker} from "./common.js";
import {ServiceWorkerMessageTypes} from "./messages.js";
import {serviceWorkerName} from "$lib/const";
import {serviceWorkerName} from "../const";

let loaded = false;
let updateIntervalID: NodeJS.Timeout | number | undefined;
Expand Down
2 changes: 1 addition & 1 deletion src/lib/svgManipulator/svgManipulator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
// eslint-disable-next-line n/file-extension-in-import
import rawSVG from "./favicon.svg?raw";
import {themeColour} from "../const";
import type {Vips} from "$lib/vips/vips";
import type {Vips} from "../vips/vips";

export type SVGData = BlobPart & Vips.Blob;

Expand Down

0 comments on commit 757c0ac

Please sign in to comment.