mirror of
https://github.com/papra-hq/papra.git
synced 2025-12-16 20:24:27 -06:00
14 lines
254 B
TypeScript
14 lines
254 B
TypeScript
import { defineConfig } from 'vitest/config'
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
reporters: ['verbose'],
|
|
projects: ['apps/*', 'packages/*'],
|
|
coverage: {
|
|
include: ['packages/*/src'],
|
|
},
|
|
env: {
|
|
TZ: 'UTC',
|
|
},
|
|
},
|
|
}) |