36 lines
842 B
JavaScript
36 lines
842 B
JavaScript
|
|
import path from 'node:path'
|
||
|
|
import { fileURLToPath } from 'node:url'
|
||
|
|
import { defineConfig } from 'vitest/config'
|
||
|
|
import react from '@vitejs/plugin-react'
|
||
|
|
|
||
|
|
const __dirname = path.dirname(fileURLToPath(import.meta.url))
|
||
|
|
|
||
|
|
export default defineConfig({
|
||
|
|
plugins: [react()],
|
||
|
|
resolve: {
|
||
|
|
alias: {
|
||
|
|
'@': path.resolve(__dirname, './src'),
|
||
|
|
},
|
||
|
|
},
|
||
|
|
test: {
|
||
|
|
globals: true,
|
||
|
|
environment: 'jsdom',
|
||
|
|
setupFiles: ['./src/test/setup.ts'],
|
||
|
|
include: ['src/**/*.{test,spec}.{js,ts,jsx,tsx}'],
|
||
|
|
coverage: {
|
||
|
|
provider: 'v8',
|
||
|
|
reporter: ['text', 'json', 'html'],
|
||
|
|
include: ['src/**/*.{ts,tsx}'],
|
||
|
|
exclude: [
|
||
|
|
'src/**/*.d.ts',
|
||
|
|
'src/**/*.interface.ts',
|
||
|
|
'src/test/**',
|
||
|
|
'src/main.tsx',
|
||
|
|
'src/vite-env.d.ts',
|
||
|
|
],
|
||
|
|
},
|
||
|
|
timeout: 10000,
|
||
|
|
clearMocks: true,
|
||
|
|
},
|
||
|
|
})
|