mirror of
https://github.com/Kaelio/ktx.git
synced 2026-06-13 08:15:14 +02:00
9 lines
146 B
TypeScript
9 lines
146 B
TypeScript
|
|
import { defineConfig } from 'vitest/config';
|
||
|
|
|
||
|
|
export default defineConfig({
|
||
|
|
test: {
|
||
|
|
root: '.',
|
||
|
|
include: ['src/**/*.test.ts'],
|
||
|
|
},
|
||
|
|
});
|