mirror of
https://github.com/Kaelio/ktx.git
synced 2026-06-07 07:55:13 +02:00
15 lines
281 B
TypeScript
15 lines
281 B
TypeScript
import { defineConfig } from 'vitest/config';
|
|
|
|
export default defineConfig({
|
|
oxc: {
|
|
jsx: {
|
|
runtime: 'automatic',
|
|
importSource: 'react',
|
|
},
|
|
},
|
|
test: {
|
|
root: '.',
|
|
include: ['src/**/*.test.ts', 'src/**/*.test.tsx'],
|
|
testTimeout: 30_000,
|
|
},
|
|
});
|