Add initial MCP server (#261898)

This commit is contained in:
Tyler James Leonhardt
2025-08-15 23:25:13 -07:00
committed by GitHub
parent e98a20f554
commit 4a653ec816
13 changed files with 3948 additions and 3 deletions

22
test/mcp/tsconfig.json Normal file
View File

@@ -0,0 +1,22 @@
{
"compilerOptions": {
"module": "commonjs",
"noImplicitAny": false,
"removeComments": false,
"preserveConstEnums": true,
"target": "es2024",
"strict": true,
"noUnusedParameters": false,
"noUnusedLocals": true,
"outDir": "out",
"sourceMap": true,
"skipLibCheck": true,
"lib": [
"esnext", // for #201187
"dom"
]
},
"exclude": [
"node_modules"
]
}