boardgame-core/vitest.config.ts

15 lines
272 B
TypeScript

import { defineConfig } from 'vitest/config';
export default defineConfig({
test: {
globals: true,
environment: 'node',
include: ['tests/**/*.test.ts'],
},
resolve: {
alias: {
'@/': new URL('./src/', import.meta.url).pathname,
},
},
});