15 lines
317 B
TypeScript
15 lines
317 B
TypeScript
import path from 'node:path';
|
|
import { defineConfig } from 'vitest/config';
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
environment: 'node',
|
|
include: ['web-front/src/**/*.test.ts', 'ingestion/src/**/*.test.ts'],
|
|
},
|
|
resolve: {
|
|
alias: {
|
|
'@': path.resolve(__dirname, 'web-front/src'),
|
|
},
|
|
},
|
|
});
|