10 lines
258 B
TypeScript
10 lines
258 B
TypeScript
|
|
import tsconfigPaths from 'vite-tsconfig-paths'
|
||
|
|
import { defineConfig } from 'vitest/config'
|
||
|
|
|
||
|
|
export default defineConfig({
|
||
|
|
plugins: [tsconfigPaths({ projects: ['./tsconfig.test.json'] })],
|
||
|
|
test: {
|
||
|
|
include: ['packages/*/tests/**/*.spec.ts'],
|
||
|
|
},
|
||
|
|
})
|