mirror of
https://github.com/jparkerweb/plan2code.git
synced 2026-07-21 18:33:22 -07:00
8 lines
131 B
TypeScript
8 lines
131 B
TypeScript
|
|
import { defineConfig } from 'vitest/config';
|
||
|
|
|
||
|
|
export default defineConfig({
|
||
|
|
test: {
|
||
|
|
include: ['src/**/*.test.ts'],
|
||
|
|
},
|
||
|
|
});
|