Study/vitest.config.ts
Elijah 7b90409f2e
All checks were successful
Automated Container Build / build-and-push (push) Successful in 1m22s
Add deck generation and study flow improvements
2026-07-13 14:56:33 -07:00

13 lines
262 B
TypeScript

import { fileURLToPath } from "node:url";
import { defineConfig } from "vitest/config";
export default defineConfig({
resolve: {
alias: {
"@": fileURLToPath(new URL("./src", import.meta.url)),
},
},
test: {
environment: "node",
},
});