- Use ESM for building the MCP Server - Added own Postgres dependency to MCP Server for querying tables and other entities in MCP - Vastly improved AI Agent rules - Added MCP Prompts for reviewing code and planning features - Minor refactoring
15 lines
346 B
JSON
15 lines
346 B
JSON
{
|
|
"extends": "@kit/tsconfig/base.json",
|
|
"compilerOptions": {
|
|
"tsBuildInfoFile": "node_modules/.cache/tsbuildinfo.json",
|
|
"outDir": "./build",
|
|
"noEmit": false,
|
|
"strict": false,
|
|
"target": "ES2022",
|
|
"module": "nodenext",
|
|
"moduleResolution": "nodenext"
|
|
},
|
|
"files": ["src/index.ts"],
|
|
"exclude": ["node_modules"]
|
|
}
|