chore: scaffolding mono-package jalon 1 (APT)

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
2026-06-04 20:54:45 +02:00
co-authored by Claude Opus 4.8
commit b8c3cba878
7 changed files with 3778 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
import { defineConfig } from "vitest/config";
export default defineConfig({
test: {
globals: true,
include: ["server/**/*.test.ts", "shared/**/*.test.ts"],
environment: "node",
},
resolve: { alias: { "@shared": new URL("./shared", import.meta.url).pathname } },
});