Files
wehub-resource-sync 588cfc5bb3
Release / release-please (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 12:45:31 +08:00

15 lines
246 B
TypeScript

import { defineConfig } from "vitest/config";
import path from "path";
export default defineConfig({
resolve: {
alias: {
"~": path.resolve(__dirname, "src"),
},
},
test: {
globals: true,
testTimeout: 30_000,
},
});