honojs-middleware/packages/typia-validator/vitest.config.ts

14 lines
255 B
TypeScript

import UnpluginTypia from '@ryoppippi/unplugin-typia/vite'
import { defineProject } from 'vitest/config'
export default defineProject({
plugins: [
UnpluginTypia({
tsconfig: './tsconfig.json',
}),
],
test: {
globals: true,
},
})