8 lines
158 B
TypeScript
8 lines
158 B
TypeScript
|
|
import { defineConfig } from 'vitest/config';
|
||
|
|
|
||
|
|
export default defineConfig({
|
||
|
|
test: {
|
||
|
|
projects: ['packages/*', 'integration-tests', 'scripts'],
|
||
|
|
},
|
||
|
|
});
|