13 lines
247 B
TypeScript
13 lines
247 B
TypeScript
import { defineConfig } from 'vitest/config';
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
projects: [
|
|
'packages/cli',
|
|
'packages/core',
|
|
'packages/vscode-ide-companion',
|
|
'integration-tests',
|
|
'scripts',
|
|
],
|
|
},
|
|
});
|