880e24877d
📁 Files changed: 20 📝 Lines changed: 5493 • base.css • block-navigation.js • browser.ts.html • clover.xml • coverage-final.json • favicon.png • index.html • logger.ts.html • prettify.css • prettify.js • server.ts.html • sort-arrow-sprite.png • sorter.js • types.ts.html • package-lock.json • package.json • browser.test.ts • logger.test.ts • server.test.ts • vitest.config.ts
13 lines
289 B
TypeScript
13 lines
289 B
TypeScript
import { defineConfig } from 'vitest/config';
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
include: ['src/**/*.test.ts'],
|
|
coverage: {
|
|
provider: 'v8',
|
|
include: ['src/**/*.ts'],
|
|
exclude: ['src/**/*.test.ts', 'src/cli.ts', 'src/mcp.ts', 'src/index.ts'],
|
|
},
|
|
},
|
|
});
|