GildedRose-Refactoring-Kata/TypeScript/vitest.config.ts
2026-04-30 16:32:51 +06:00

15 lines
338 B
TypeScript

import {defineConfig} from 'vitest/config';
import tsconfigPaths from 'vite-tsconfig-paths';
export default defineConfig({
plugins: [tsconfigPaths()],
test: {
globals: true,
include: ['test/vitest/**/*.{spec,test}.{js,ts}'],
coverage: {
provider: 'istanbul',
reporter: ['text', 'html', 'lcov']
}
},
});