Initial commit.

This commit is contained in:
2026-03-11 19:24:29 +00:00
commit 6b47d30961
21 changed files with 9899 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
import { defineConfig } from 'vitest/config';
export default defineConfig({
test: {
include: ['src/**/*.test.ts'],
exclude: ['dist/**'],
},
});