mirror of
https://github.com/aljazceru/rabbit.git
synced 2025-12-17 14:04:21 +01:00
14 lines
264 B
TypeScript
14 lines
264 B
TypeScript
import path from 'path';
|
|
|
|
// eslint-disable-next-line import/no-extraneous-dependencies
|
|
import { defineConfig } from 'vitest/config';
|
|
|
|
export default defineConfig({
|
|
test: {},
|
|
resolve: {
|
|
alias: {
|
|
'@': path.resolve(__dirname, './src'),
|
|
},
|
|
},
|
|
});
|