mirror of
https://github.com/allaunthefox/Research-Stack.git
synced 2026-07-31 03:05:21 +00:00
12 lines
278 B
TypeScript
12 lines
278 B
TypeScript
import { defineConfig } from 'vitest/config'
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
globals: false,
|
|
include: ['packages/*/test/**/*.{spec,test,bench,spec-d}.ts'],
|
|
typecheck: {
|
|
enabled: false,
|
|
include: ['packages/*/test/**/*.spec-d.ts'],
|
|
},
|
|
},
|
|
})
|