@alvinveroy/codecompass
Version:
AI-powered MCP server for codebase navigation and LLM prompt optimization
32 lines (31 loc) • 727 B
JSON
{
"compilerOptions": {
"target": "ES2020",
"module": "NodeNext",
"outDir": "./dist",
"rootDir": "./src",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"moduleResolution": "NodeNext",
"allowSyntheticDefaultImports": true,
"resolveJsonModule": true,
"noImplicitAny": false,
"strictNullChecks": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"noImplicitReturns": true,
"baseUrl": "./",
"paths": {
"*": ["src/types/*"]
},
"types": [
"node",
"vitest/globals"
],
"lib": ["ESNext"]
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist"]
}