Files
social-mcp/apps/xhh-mcp/vitest.config.ts
T

15 lines
299 B
TypeScript

import { defineConfig } from 'vitest/config';
import path from 'node:path';
export default defineConfig({
resolve: {
alias: {
'@social/core': path.resolve(__dirname, '../../packages/core/src'),
},
},
test: {
include: ['test/**/*.test.ts'],
environment: 'node',
},
});