2025-03-05 13:13:40 +08:00
|
|
|
import UnpluginTypia from '@ryoppippi/unplugin-typia/vite'
|
2025-03-12 11:52:15 +08:00
|
|
|
import { defineProject } from 'vitest/config'
|
2025-03-05 13:13:40 +08:00
|
|
|
|
2025-03-12 11:52:15 +08:00
|
|
|
export default defineProject({
|
2025-03-05 13:13:40 +08:00
|
|
|
plugins: [
|
|
|
|
UnpluginTypia({
|
|
|
|
tsconfig: './tsconfig.json',
|
|
|
|
}),
|
|
|
|
],
|
|
|
|
test: {
|
|
|
|
globals: true,
|
|
|
|
},
|
|
|
|
})
|