Merge pull request #697 from ilandikov/chore/vitest-coverage-in-WebStorm

chore: show vitest coverage in JetBrains IDEs (TypeScript)
This commit is contained in:
Emily Bache 2026-05-05 06:50:38 +00:00 committed by GitHub
commit 3e0085bfd0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -8,7 +8,7 @@ export default defineConfig({
include: ['test/vitest/**/*.{spec,test}.{js,ts}'], include: ['test/vitest/**/*.{spec,test}.{js,ts}'],
coverage: { coverage: {
provider: 'istanbul', provider: 'istanbul',
reporter: ['text', 'html'] reporter: ['text', 'html', 'lcov']
} }
}, },
}); });