UNPKG

llm-memory

Version:

High-performance LLM memory system with intermediate representation for token efficiency

20 lines (19 loc) 396 B
import { defineConfig } from 'vitest/config'; export default defineConfig({ test: { globals: true, environment: 'node', include: ['test/**/*.test.ts'], coverage: { provider: 'v8', reporter: ['text', 'html', 'json'], include: ['src/**/*.ts'], exclude: ['src/**/*.d.ts', 'src/types.ts'] } }, resolve: { alias: { '@': '/src' } } });