stack/vitest.shared.ts
Konstantin Wohlwend 77787c3a4d Fix tests
2026-02-17 19:57:08 -08:00

14 lines
328 B
TypeScript

import tsconfigPaths from "vite-tsconfig-paths";
import { defineConfig } from 'vitest/config';
export default defineConfig({
plugins: [tsconfigPaths() as any],
test: {
watch: false,
pool: 'threads',
maxWorkers: 8,
include: ['**/*.test.{js,ts,jsx,tsx}'],
includeSource: ['**/*.{js,ts,jsx,tsx}'],
},
})