19 lines
404 B
TypeScript
Executable File
19 lines
404 B
TypeScript
Executable File
import { defineConfig } from 'vitest/config';
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
globals: true,
|
|
environment: 'jsdom',
|
|
environmentOptions: {
|
|
jsdom: { url: 'http://localhost' },
|
|
},
|
|
coverage: {
|
|
provider: 'v8',
|
|
reporter: ['text', 'json', 'html'],
|
|
all: false,
|
|
include: ['src/**/*.{ts,tsx}'],
|
|
exclude: ['**/*.d.ts', '**/index.ts'],
|
|
},
|
|
},
|
|
});
|