munch-ease-frontend/vitest.config.js

17 lines
348 B
JavaScript
Raw Normal View History

2025-10-18 02:17:39 +00:00
import { defineConfig } from 'vitest/config'
import { fileURLToPath } from 'node:url'
export default defineConfig({
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url)),
},
},
test: {
environment: 'node',
include: ['tests/**/*.{test,spec}.js'],
globals: true,
reporters: 'default',
},
})