feat: initial prototype
Some checks failed
Node.js CI / Lint and Test (push) Has been cancelled

This commit is contained in:
2025-02-23 19:45:53 -08:00
parent bbf71b077e
commit 3b5ceef191
25 changed files with 6276 additions and 14 deletions

15
vitest.config.ts Normal file
View File

@ -0,0 +1,15 @@
import { defineConfig } from "vitest/config";
export default defineConfig({
test: {
coverage: {
provider: "istanbul",
reporter: ["text", "html"],
all: true,
allowExternal: true,
thresholds: {
lines: 0,
},
},
},
});