mirror of
https://github.com/stack-auth/stack.git
synced 2026-06-04 21:04:37 +08:00
14 lines
328 B
TypeScript
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}'],
|
|
},
|
|
})
|