chore: snapshot before P0 security phase (backup point)

This commit is contained in:
SpecialX
2026-07-07 19:12:33 +08:00
parent 3f68f3eb09
commit 747344bfe3
130 changed files with 18879 additions and 6615 deletions

View File

@@ -0,0 +1,19 @@
import path from "node:path";
import { defineConfig } from "vitest/config";
export default defineConfig({
resolve: {
alias: {
"@": path.resolve(__dirname, "src"),
},
},
test: {
name: "arch-scan",
environment: "node",
include: ["scripts/arch-scan/**/*.test.ts"],
testTimeout: 60000,
clearMocks: true,
restoreMocks: true,
mockReset: true,
},
});