UNPKG

mcp-server-gpt-image

Version:

MCP server for OpenAI GPT Image-1 and Responses API with dual-mode support, real-time streaming, intelligent caching, and automatic image optimization

27 lines (26 loc) 544 B
import { defineConfig } from 'vitest/config'; import path from 'path'; export default defineConfig({ test: { globals: true, environment: 'node', coverage: { provider: 'v8', reporter: ['text', 'json', 'html'], exclude: [ 'node_modules/', 'dist/', '**/*.d.ts', '**/*.config.*', '**/mockData.ts', 'examples/**', ], }, include: ['src/**/*.{test,spec}.{js,ts}'], }, resolve: { alias: { '@': path.resolve(__dirname, './src'), }, }, });