munch-ease-frontend/vitest.config.js
2025-10-18 13:17:39 +11:00

16 lines
348 B
JavaScript

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',
},
})