mirror of
https://github.com/Kaelio/ktx.git
synced 2026-06-10 08:05: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'],
|
||
|
|
},
|
||
|
|
});
|