initial-commit

This commit is contained in:
nicwands
2026-03-24 13:53:25 -04:00
commit c2b9615d28
10 changed files with 2105 additions and 0 deletions

9
vitest.config.js Normal file
View File

@@ -0,0 +1,9 @@
import { defineConfig } from 'vitest/config'
export default defineConfig({
test: {
globals: true,
testTimeout: 30000,
setupFiles: ['fake-indexeddb/auto'],
},
})