mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-20 14:56:17 -04:00
14 lines
282 B
TypeScript
14 lines
282 B
TypeScript
![]() |
import { configDefaults, defineConfig } from 'vitest/config';
|
||
|
import path from 'path';
|
||
|
|
||
|
export default defineConfig({
|
||
|
resolve: {
|
||
|
alias: {
|
||
|
'@': path.resolve(__dirname, './src'),
|
||
|
},
|
||
|
},
|
||
|
test: {
|
||
|
exclude: [...configDefaults.exclude, '**/*.e2e.spec.ts'],
|
||
|
},
|
||
|
});
|