mirror of
https://github.com/simplex-chat/simplexmq.git
synced 2026-04-30 01:35:29 +00:00
10 lines
186 B
TypeScript
10 lines
186 B
TypeScript
import {defineConfig} from 'vitest/config'
|
|
|
|
export default defineConfig({
|
|
esbuild: {target: 'esnext'},
|
|
test: {
|
|
include: ['test/**/*.node.test.ts'],
|
|
testTimeout: 30000
|
|
}
|
|
})
|