@codervisor/devlog-ai
Version:
AI Chat History Extractor & Docker-based Automation - TypeScript implementation for GitHub Copilot and other AI coding assistants with automated testing capabilities
13 lines (11 loc) • 329 B
text/typescript
import { defineConfig, mergeConfig } from 'vitest/config';
import { baseConfig } from '../../vitest.config.base.js';
export default defineConfig(
mergeConfig(baseConfig, {
// AI-specific overrides
test: {
// AI package might not have tests yet, so pass with no tests
passWithNoTests: true,
},
}),
);