mirror of
https://github.com/papra-hq/papra.git
synced 2026-01-11 16:28:47 -06:00
12 lines
219 B
TypeScript
12 lines
219 B
TypeScript
import { defineConfig } from 'vitest/config'
|
|
|
|
export default defineConfig({
|
|
|
|
test: {
|
|
reporters: ['verbose'],
|
|
projects: ['apps/*', 'packages/*'],
|
|
coverage: {
|
|
include: ['packages/*/src'],
|
|
}
|
|
},
|
|
}) |