FigmaMind MCP Server

by joao-loker
Verified
{ "compilerOptions": { "target": "ES2020", "module": "CommonJS", "lib": ["ES2020", "DOM"], "moduleResolution": "node", "declaration": true, "sourceMap": true, "outDir": "./dist", "rootDir": ".", "strict": true, "esModuleInterop": true, "skipLibCheck": true, "forceConsistentCasingInFileNames": true, "resolveJsonModule": true, "baseUrl": ".", "paths": { "@/*": ["src/*"], "@scripts/*": ["scripts/*"], "@utils/*": ["src/utils/*"], "@services/*": ["src/services/*"], "@processor/*": ["src/processor/*"], "@transformers/*": ["src/transformers/*"], "@mcp/*": ["src/mcp/*"] }, "typeRoots": ["./node_modules/@types", "./src/types"], "allowSyntheticDefaultImports": true, "noImplicitAny": false, "noImplicitThis": true, "strictNullChecks": true, "alwaysStrict": true }, "include": [ "src/**/*" ], "exclude": [ "node_modules", "dist", "**/*.test.ts", "scripts/**/*", "tests/**/*" ] }