feat: initial prototype
Node.js CI / Lint and Test (push) Successful in 41s

This commit is contained in:
2025-03-06 17:41:16 -08:00
parent 8b4ccadcfe
commit e53db48154
16 changed files with 5348 additions and 15 deletions
+18
View File
@@ -0,0 +1,18 @@
import { defineConfig } from "vitest/config";
export default defineConfig({
test: {
coverage: {
provider: "istanbul",
reporter: ["text", "html"],
all: true,
allowExternal: true,
thresholds: {
lines: 100,
statements: 100,
branches: 100,
functions: 100,
},
},
},
});