mirror of
https://github.com/diegosouzapw/OmniRoute.git
synced 2026-08-03 13:52:09 +03:00
24 lines
531 B
TypeScript
24 lines
531 B
TypeScript
import { defineConfig } from "vitest/config";
|
|
import path from "path";
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
environment: "node",
|
|
globals: true,
|
|
include: [
|
|
"open-sse/mcp-server/__tests__/**/*.test.ts",
|
|
"open-sse/services/autoCombo/__tests__/**/*.test.ts",
|
|
"tests/unit/encryption.spec.ts",
|
|
],
|
|
exclude: ["**/node_modules/**", "**/.git/**"],
|
|
coverage: {
|
|
reportsDirectory: "coverage",
|
|
},
|
|
},
|
|
resolve: {
|
|
alias: {
|
|
"@": path.resolve(__dirname, "./src"),
|
|
},
|
|
},
|
|
});
|