2025-06-12 12:51:41 +05:30
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"target": "ES2022",
|
|
|
|
|
"module": "Node16",
|
|
|
|
|
"moduleResolution": "Node16",
|
2025-06-12 15:00:47 +05:30
|
|
|
"outDir": "../dist",
|
|
|
|
|
"rootDir": "./src",
|
2025-06-12 12:51:41 +05:30
|
|
|
"strict": true,
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
|
"declaration": true,
|
|
|
|
|
"declarationMap": true,
|
|
|
|
|
"sourceMap": true
|
|
|
|
|
},
|
|
|
|
|
"include": [
|
2025-06-12 15:00:47 +05:30
|
|
|
"src/mcp-worker.ts"
|
2025-06-12 12:51:41 +05:30
|
|
|
],
|
|
|
|
|
"exclude": [
|
|
|
|
|
"node_modules",
|
|
|
|
|
"dist"
|
|
|
|
|
]
|
|
|
|
|
}
|