mirror of
https://github.com/chrisbenincasa/tunarr.git
synced 2026-04-18 00:53:35 -04:00
13 lines
237 B
TypeScript
13 lines
237 B
TypeScript
import { defineConfig } from 'vitest/config';
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
projects: [
|
|
'web/vitest.config.ts',
|
|
'server/vitest.config.ts',
|
|
'server/vitest.local.config.ts',
|
|
'shared',
|
|
],
|
|
},
|
|
});
|