Prepare Portainer deployment

This commit is contained in:
Zachariah K. Sharma
2026-06-05 23:46:10 -06:00
commit e6f1c5c13f
84 changed files with 12383 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
import { defineConfig } from "vitest/config";
import path from "node:path";
export default defineConfig({
resolve: {
alias: {
"@": path.resolve(__dirname, "./src"),
},
},
test: {
environment: "node",
include: ["src/**/*.test.ts"],
exclude: ["node_modules/**", ".next/**"],
coverage: {
provider: "v8",
reporter: ["text", "html"],
include: ["src/lib/**/*.ts"],
exclude: ["src/lib/**/*.test.ts"],
},
},
});