Files
gh-codeql-report/vitest.config.ts
2025-09-30 22:34:56 +03:00

14 lines
320 B
TypeScript

import { defineConfig } from 'vitest/config';
export default defineConfig({
test: {
globals: true,
environment: 'node',
coverage: {
provider: 'v8',
reporter: ['text', 'json', 'html', 'json-summary'],
exclude: ['node_modules/', 'dist/', '**/*.test.ts', '**/*.config.ts'],
},
},
});