Skip to content

Commit

Permalink
lint: fix lint x2
Browse files Browse the repository at this point in the history
  • Loading branch information
KawaiiZapic committed Nov 5, 2024
1 parent bc326bc commit 7690868
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ export default defineConfig(async env => {
try {
MatechoConfig = {
...MatechoConfig,
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
// @ts-ignore dynamic imported module
...(await import("./matecho.config")).default
...(await import("./matecho.config") as unknown).default as Partial<MatechoBuildOptions>
};
} catch (_) {
// ignore
Expand Down

0 comments on commit 7690868

Please sign in to comment.