mirror of
https://github.com/egoist/tsup.git
synced 2025-12-08 20:35:58 +00:00
10 lines
207 B
TypeScript
10 lines
207 B
TypeScript
import { defineConfig } from 'vitest/config'
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
testTimeout: 50000,
|
|
globalSetup: 'vitest-global.ts',
|
|
include: ["test/*.test.ts", "src/**/*.test.ts"]
|
|
},
|
|
})
|