@lobehub/chat
Version:
Lobe Chat - an open-source, high-performance chatbot framework that supports speech synthesis, multimodal, and extensible Function Call plugin system. Supports one-click free deployment of your private ChatGPT/LLM web application.
27 lines (23 loc) • 608 B
text/typescript
import { defineConfig } from 'vitest/config';
export default defineConfig({
test: {
coverage: {
exclude: [
// Default excludes
'coverage/**',
'dist/**',
'**/node_modules/**',
'**/*.d.ts',
'**/*.config.*',
'**/mockData',
'**/.{git,cache,output,temp}/**',
// Custom excludes
'**/examples/**', // Example files
'**/index.ts', // Export-only files
'**/types/**', // Type definition files
],
reporter: ['text', 'json', 'lcov', 'text-summary'],
},
environment: 'happy-dom',
},
});