Complete production implementation with shell+adapter architecture, 13 MCP tools, SQLite FTS5 search, and multi-source ingestion pipeline. Ingestion fetches from UCI mirror, UNODC SHERLOC PDFs, and Knesset mobile PDFs (135 provisions, 33 definitions). 3 acts with full text, 7 acts metadata-only due to gov.il/nevo.co.il access restrictions. Knesset OData API used for metadata enrichment. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
22 lines
547 B
TypeScript
22 lines
547 B
TypeScript
import { defineConfig } from 'vitest/config';
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
globals: true,
|
|
environment: 'node',
|
|
include: ['tests/**/*.test.ts', '__tests__/**/*.test.ts'],
|
|
exclude: ['node_modules', 'dist', '.git'],
|
|
coverage: {
|
|
provider: 'v8',
|
|
reporter: ['text', 'html', 'json'],
|
|
include: ['src/**/*.ts'],
|
|
exclude: ['src/index.ts'],
|
|
},
|
|
reporters: ['verbose'],
|
|
testTimeout: 5000,
|
|
hookTimeout: 5000,
|
|
fileParallelism: true,
|
|
watchExclude: ['node_modules', 'dist'],
|
|
},
|
|
});
|