mirror of
https://github.com/emilybache/GildedRose-Refactoring-Kata.git
synced 2025-12-12 20:32:15 +00:00
15 lines
330 B
TypeScript
15 lines
330 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']
|
|
}
|
|
},
|
|
});
|