Basic setup

This commit is contained in:
shamoon
2026-02-02 21:21:22 -08:00
parent 99f1540d8c
commit b497b877db
4 changed files with 1380 additions and 1 deletions

9
vitest.config.mjs Normal file
View File

@@ -0,0 +1,9 @@
import { defineConfig } from "vitest/config";
export default defineConfig({
test: {
environment: "node",
setupFiles: ["./vitest.setup.js"],
include: ["src/**/*.test.{js,jsx}", "src/**/*.spec.{js,jsx}"],
},
});