@access-mcp/events
Version:
ACCESS-CI Events MCP Server - Get information about workshops, webinars, and training events
19 lines (17 loc) • 387 B
text/typescript
import { defineConfig } from "vitest/config";
import path from "path";
export default defineConfig({
test: {
globals: true,
environment: "node",
coverage: {
reporter: ["text", "json", "html"],
exclude: ["node_modules/", "dist/", "*.config.ts", "src/index.ts"],
},
},
resolve: {
alias: {
"@": path.resolve(__dirname, "./src"),
},
},
});