diff --git a/vite.config.ts b/vite.config.ts index 6badc9ce..9acca6a4 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -43,10 +43,12 @@ export default defineConfig({ ], // Required code coverage. Lower than this will make the check fail - statements: 95, - branches: 95, - functions: 90, - lines: 95, + thresholds: { + statements: 95, + branches: 95, + functions: 90, + lines: 95, + }, }, }, });