initial 2
Some checks failed
CI / test (push) Has been cancelled

This commit is contained in:
2026-06-26 09:26:50 +01:00
parent 194330fb47
commit 3b37368e7d
213 changed files with 14688 additions and 1 deletions

17
apps/web/vitest.config.ts Executable file
View File

@@ -0,0 +1,17 @@
import { defineConfig } from "vitest/config";
import path from "path";
export default defineConfig({
test: {
environment: "node",
include: [
"src/**/*.test.ts",
"../../packages/shared/src/**/*.test.ts",
],
},
resolve: {
alias: {
"@": path.resolve(__dirname, "./src"),
},
},
});