mirror of
https://github.com/Litlyx/litlyx
synced 2025-12-11 00:08:37 +01:00
14 lines
258 B
TypeScript
14 lines
258 B
TypeScript
import { defineConfig } from 'vitest/config';
|
|
import path from 'path';
|
|
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
setupFiles: './vitest.setup.ts',
|
|
},
|
|
resolve: {
|
|
alias: {
|
|
'~': path.resolve(__dirname),
|
|
},
|
|
},
|
|
}); |