Skip to main content
Glama

MCP Image Generator

by shinpr
tsconfig.json•2.3 kB
{ "compilerOptions": { // Basic configuration "target": "ES2020", "module": "commonjs", "moduleResolution": "node", "lib": ["ES2020"], "types": ["node"], "baseUrl": ".", // Use project root as reference "paths": { "src/*": ["src/*"] }, // Output configuration "outDir": "./dist", "rootDir": "./src", "sourceMap": true, "declaration": true, "declarationMap": true, // Strict type checking (this is important!) "strict": true, // Enable all strict checks "noImplicitAny": true, // Prohibit implicit any "strictNullChecks": true, // Strict null/undefined checks "strictFunctionTypes": true, // Strict function type checks "strictBindCallApply": true, // Strict bind/call/apply checks "strictPropertyInitialization": true, // Strict property initialization checks "noImplicitThis": true, // Prohibit implicit this "alwaysStrict": true, // Always enable strict mode // Additional safety checks (currently disabled in this PR) "noUncheckedIndexedAccess": true, // Safety checks for index access "exactOptionalPropertyTypes": true, // Strict type checking for optional properties "noPropertyAccessFromIndexSignature": true, // Prohibit property access from index signature // Error detection "noFallthroughCasesInSwitch": false, // Allow intentional fallthrough in switch statements "noImplicitReturns": true, // Prohibit implicit returns "noImplicitOverride": true, // Require override keyword "noUnusedLocals": true, // Detect unused local variables "noUnusedParameters": true, // Detect unused parameters // Module resolution "esModuleInterop": true, "skipLibCheck": true, // Skip type checking of declaration files (build optimization) "forceConsistentCasingInFileNames": true, "resolveJsonModule": true }, "include": ["src/**/*"], "exclude": [ "node_modules", "dist", "**/*.spec.ts", "**/*.test.ts", "src/__tests__/**/*", "src/tests/**/*", "src/**/__tests__/**/*" ] }

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/shinpr/mcp-image'

If you have feedback or need assistance with the MCP directory API, please join our Discord server