Initial commit
Some checks failed
Node.js build / build (20.x) (push) Failing after 5m57s
Node.js build / build (22.x) (push) Failing after 5m52s

This commit is contained in:
2026-02-19 16:35:20 -08:00
parent dc2fa22c4d
commit 2936f7d359
18 changed files with 2727 additions and 93 deletions

8
vitest.config.ts Normal file
View File

@@ -0,0 +1,8 @@
import { defineConfig } from 'vitest/config';
export default defineConfig({
test: {
include: ['src/**/*.test.ts'],
environment: 'node',
},
});