This commit is contained in:
2026-03-09 15:56:02 +01:00
parent 88629e6dcc
commit c55bde60e6
11 changed files with 2439 additions and 344 deletions

12
vitest.config.ts Normal file
View File

@@ -0,0 +1,12 @@
import { defineConfig } from 'vitest/config'
import path from 'path'
export default defineConfig({
resolve: {
alias: { '@': path.resolve(__dirname, './src') },
},
test: {
environment: 'jsdom',
include: ['src/**/*.{test,spec}.{ts,tsx}'],
},
})