We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/cydynamic/pdf-reader-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
tsconfig.eslint.json•576 B
{
// Extend the main tsconfig.json
"extends": "./tsconfig.json",
// Include source files AND test files for ESLint
"include": [
"src/**/*.ts",
"test/**/*.ts",
"eslint.config.js", // Include ESLint config itself if needed
"vitest.config.ts",
"commitlint.config.cjs",
".prettierrc.cjs"
// Add other JS/TS config files if necessary
],
// Exclude the same files as the main config, plus potentially others
"exclude": [
"node_modules",
"dist",
"coverage"
// No need to exclude test files here as we want to lint them
]
}