mirror of
https://github.com/MHSanaei/3x-ui.git
synced 2026-05-31 18:24:10 +00:00
18 lines
334 B
TypeScript
18 lines
334 B
TypeScript
import path from 'node:path';
|
|||
|
|||
import { defineConfig } from 'vitest/config';
|
|||
|
|||
export default defineConfig({
|
|||
resolve: {
|
|||
alias: {
|
|||
'@': path.resolve(__dirname, 'src'),
|
|||
},
|
|||
},
|
|||
test: {
|
|||
include: ['src/test/**/*.test.ts'],
|
|||
environment: 'node',
|
|||
globals: false,
|
|||
setupFiles: ['./src/test/setup.ts'],
|
|||
},
|
|||
});
|