Initial commit

This commit is contained in:
2025-09-27 14:15:00 +08:00
commit 4bab0a78b2
205 changed files with 23872 additions and 0 deletions

12
vitest.config.mts Normal file
View File

@@ -0,0 +1,12 @@
import { defineConfig } from 'vitest/config'
import react from '@vitejs/plugin-react'
import tsconfigPaths from 'vite-tsconfig-paths'
export default defineConfig({
plugins: [tsconfigPaths(), react()],
test: {
environment: 'jsdom',
setupFiles: ['./vitest.setup.ts'],
include: ['tests/int/**/*.int.spec.ts'],
},
})