We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/snoopdave/mcp-hello-world-ts'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
/** @type {import("jest").Config} **/
export default {
extensionsToTreatAsEsm: [".ts"], // Only include .ts files
transform: {
"^.+\\.tsx?$": [
"ts-jest",
{
useESM: true,
tsconfig: {
// Override the tsconfig settings for tests
module: "ESNext",
moduleResolution: "node"
}
}
],
},
testEnvironment: "node", // Node.js test environment
// Add these configurations to control which files Jest processes
testMatch: ['**/*.test.ts'], // Only run .test.ts files, not .test.js
testPathIgnorePatterns: ['/node_modules/', '/dist/'], // Explicitly ignore the dist directory
modulePathIgnorePatterns: ['/dist/'], // Prevent duplicate module warnings from dist
};