mirror of
https://github.com/stack-auth/stack.git
synced 2026-06-04 21:04:37 +08:00
9 lines
184 B
TypeScript
9 lines
184 B
TypeScript
import { defineConfig } from 'vitest/config'
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
include: ['**/*.test.{js,ts,jsx,tsx}'],
|
|
includeSource: ['**/*.{js,ts,jsx,tsx}'],
|
|
},
|
|
})
|