mirror of
https://github.com/Lissy93/awesome-privacy.git
synced 2026-03-11 08:55:33 +00:00
16 lines
387 B
TypeScript
16 lines
387 B
TypeScript
import { defineConfig } from 'vitest/config';
|
|
import { resolve } from 'path';
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
environment: 'node',
|
|
include: ['src/**/*.test.ts'],
|
|
},
|
|
resolve: {
|
|
alias: {
|
|
'@components': resolve(__dirname, 'src/components'),
|
|
'@layouts': resolve(__dirname, 'src/layouts'),
|
|
'@utils': resolve(__dirname, 'src/utils'),
|
|
},
|
|
},
|
|
});
|