- Prefer private Unix sockets with TCP fallback for local MCP clients - Unify HTTP and WebSocket lifecycle, authentication, and cleanup - Discover transport details from an owner-only runtime file
17 lines
363 B
JSON
17 lines
363 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"paths": {
|
|
"#mcp/*": ["./src/*"]
|
|
},
|
|
"noCheck": true,
|
|
"outDir": "dist",
|
|
"rootDir": "src"
|
|
},
|
|
"include": ["src/index.ts", "src/server.ts", "src/stdio.ts", "src/transport/**/*.ts"]
|
|
}
|