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