mirror of
https://github.com/MoonshotAI/kimi-code.git
synced 2026-07-09 17:29:12 +00:00
13 lines
351 B
TypeScript
13 lines
351 B
TypeScript
import { defineConfig } from 'vitest/config';
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
projects: ['packages/*', 'apps/kimi-code'],
|
|
coverage: {
|
|
provider: 'v8',
|
|
include: ['packages/*/src/**/*.ts', 'apps/*/src/**/*.ts'],
|
|
exclude: ['**/*.test.ts', '**/*.spec.ts', '**/dist/**'],
|
|
reporter: ['text', 'html'],
|
|
},
|
|
},
|
|
});
|