Initial repo with TypeScript strict, MCP SDK 1.29, Prisma 7, zod and tsx. Stdio-transport bootstrap in src/index.ts boots without crashing. Tools and prompts to be added in ST-705..ST-709. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
19 lines
464 B
JSON
19 lines
464 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "NodeNext",
|
|
"moduleResolution": "NodeNext",
|
|
"lib": ["ES2022"],
|
|
"outDir": "./dist",
|
|
"rootDir": "./src",
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"resolveJsonModule": true,
|
|
"declaration": false,
|
|
"sourceMap": true
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["node_modules", "dist", "vendor"]
|
|
}
|