mirror of
https://github.com/ivuorinen/gh-codeql-report.git
synced 2026-01-26 03:34:05 +00:00
14 lines
320 B
TypeScript
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'],
|
|
},
|
|
},
|
|
});
|