mirror of
https://github.com/MHSanaei/3x-ui.git
synced 2026-06-05 20:54:14 +00:00
17 lines
293 B
TypeScript
17 lines
293 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,
|
||
|
|
},
|
||
|
|
});
|