feat(runner-template): MCP Streamable HTTP + OAuth 2.1 resource server template

This commit is contained in:
Marco Sadjadi
2026-05-19 00:27:22 +02:00
parent cc24dd4a63
commit efa2c3f30d
5 changed files with 71 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
{
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "Bundler",
"esModuleInterop": true,
"resolveJsonModule": true,
"isolatedModules": true,
"skipLibCheck": true,
"strict": true,
"noUncheckedIndexedAccess": true,
"verbatimModuleSyntax": false
},
"include": ["src/**/*"]
}