mcp-zero/vitest.config.js
yangyudong 82e579e11b feat: 初始化MCP时间服务器项目
添加核心功能模块包括时间工具集、服务器实现和测试
配置项目基础设置如ESLint、Prettier和Vitest
实现时间相关功能包括当前时间、时区信息和日期计算
添加README文档说明项目功能和使用方法
2025-08-17 00:39:43 +08:00

18 lines
334 B
JavaScript

import { defineConfig } from 'vitest/config';
export default defineConfig({
test: {
globals: true,
environment: 'node',
coverage: {
provider: 'v8',
reporter: ['text', 'json', 'html'],
exclude: [
'node_modules/',
'tests/',
'bin/',
'*.config.js',
],
},
},
});