fix: vitest config - coverage lcov

This commit is contained in:
Louis 2025-07-12 20:09:31 +07:00
parent c23c34583d
commit 09a45baa5d
No known key found for this signature in database
GPG Key ID: 44FA9F4D33C37DE2

View File

@ -5,9 +5,13 @@ export default defineConfig({
projects: [
// Core package - use its own vitest config
'./core',
// Web-app package - use its own vitest config
'./web-app'
]
}
})
// Web-app package - use its own vitest config
'./web-app',
],
coverage: {
provider: 'v8',
reporter: ['text', 'json', 'html', 'lcov'],
},
},
})