15 lines
299 B
TypeScript
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',
|
|
},
|
|
});
|