import { defineConfig } from 'vitest/config' | |
import react from '@vitejs/plugin-react' | |
import { resolve } from 'path' | |
export default defineConfig({ | |
plugins: [react()], | |
test: { | |
globals: true, | |
environment: 'jsdom', | |
setupFiles: ['./src/setupTests.js'], | |
include: ['**/*.{test,spec}.{js,jsx,ts,tsx}'], | |
}, | |
resolve: { | |
alias: { | |
'@': resolve(__dirname, './src'), | |
}, | |
}, | |
}) |