From 92d2981c645274daa051827baecba25fdab74952 Mon Sep 17 00:00:00 2001 From: Ilyas Landikov Date: Thu, 30 Apr 2026 16:32:51 +0600 Subject: [PATCH] chore: show vitest coverage in JetBrains IDEs --- TypeScript/vitest.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TypeScript/vitest.config.ts b/TypeScript/vitest.config.ts index 73488c68..d7b839ee 100644 --- a/TypeScript/vitest.config.ts +++ b/TypeScript/vitest.config.ts @@ -8,7 +8,7 @@ export default defineConfig({ include: ['test/vitest/**/*.{spec,test}.{js,ts}'], coverage: { provider: 'istanbul', - reporter: ['text', 'html'] + reporter: ['text', 'html', 'lcov'] } }, });