Files
shsf-cli/vitest.config.ts
Space-Banane 7b86fec717 That should do
2026-03-20 17:02:34 +01:00

14 lines
333 B
TypeScript

import { defineConfig } from 'vitest/config';
export default defineConfig({
test: {
globals: true,
environment: 'node',
exclude: ['**/node_modules/**', '**/dist/**', '**/cypress/**', '**/.{idea,git,cache,output,temp}/**'],
coverage: {
provider: 'v8',
reporter: ['text', 'json', 'html'],
}
},
});