Columbia MCP Server

{ "compilerOptions": { "target": "ES2020", "module": "ES2020", "moduleResolution": "node", "lib": ["ES2020"], "declaration": true, "declarationMap": true, "sourceMap": true, "outDir": "./build", "baseUrl": ".", "paths": { "@columbia-mcp/*": ["packages/*/src"], "@shared/*": ["shared/*"] }, "strict": true, "noImplicitAny": true, "strictNullChecks": true, "strictFunctionTypes": true, "strictBindCallApply": true, "strictPropertyInitialization": true, "noImplicitThis": true, "alwaysStrict": true, "noUnusedLocals": true, "noUnusedParameters": true, "noImplicitReturns": true, "noFallthroughCasesInSwitch": true, "esModuleInterop": true, "skipLibCheck": true, "forceConsistentCasingInFileNames": true, "resolveJsonModule": true }, "include": [ "packages/*/src/**/*", "services/*/src/**/*", "shared/**/*", "tests/**/*" ], "exclude": [ "node_modules", "build", "**/dist", "**/*.test.ts", "**/*.spec.ts", "**/jest.config.js" ] }