mirror of
https://github.com/egoist/tsup.git
synced 2025-12-08 20:35:58 +00:00
10 lines
140 B
TypeScript
10 lines
140 B
TypeScript
import { UserConfig } from 'vitest'
|
|
|
|
const config: { test: UserConfig } = {
|
|
test: {
|
|
testTimeout: 50000,
|
|
},
|
|
}
|
|
|
|
export default config
|