10 lines
248 B
TypeScript
10 lines
248 B
TypeScript
|
|
import { defineConfig } from 'vitest/config';
|
||
|
|
|
||
|
|
// Vitest config for dev-indices Vite plugin (pure Node, no jsdom)
|
||
|
|
export default defineConfig({
|
||
|
|
test: {
|
||
|
|
environment: 'node',
|
||
|
|
include: ['__tests__/**/*.{test,spec}.ts'],
|
||
|
|
},
|
||
|
|
});
|