feat: initialisation projet Hono.js + TypeScript + Vitest

This commit is contained in:
Hermann_Kitio 2026-04-16 06:37:25 +03:00
parent b06970c9ae
commit 708517edef
13 changed files with 3125 additions and 131 deletions

12
vitest.config.ts Normal file
View file

@ -0,0 +1,12 @@
import { defineConfig } from 'vitest/config'
export default defineConfig({
test: {
environment: 'node',
globals: true,
coverage: {
reporter: ['text', 'html'],
include: ['src/lib/**', 'src/controllers/**'],
},
},
})