boardgame-core/vitest.config.ts

15 lines
272 B
TypeScript
Raw Normal View History

import { defineConfig } from 'vitest/config';
export default defineConfig({
test: {
globals: true,
environment: 'node',
include: ['tests/**/*.test.ts'],
},
2026-04-02 15:59:27 +08:00
resolve: {
alias: {
'@/': new URL('./src/', import.meta.url).pathname,
},
},
});