2025-03-12 11:52:15 +08:00
|
|
|
import { defineProject } from 'vitest/config'
|
2023-12-05 17:15:06 +08:00
|
|
|
|
2025-03-12 11:52:15 +08:00
|
|
|
export default defineProject({
|
2023-12-05 17:15:06 +08:00
|
|
|
test: {
|
|
|
|
globals: true,
|
|
|
|
typecheck: {
|
2025-03-27 14:08:49 +08:00
|
|
|
tsconfig: './tsconfig.json',
|
|
|
|
enabled: true,
|
2023-12-05 17:15:06 +08:00
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|