Files
crawlab/mcp/tsconfig.json
Marvin Zhang c29e21deec feat: Implement Crawlab MCP Server with tools and prompts
- Added main server file (index.ts) to initialize the Crawlab MCP Server.
- Created prompts for spider analysis, task debugging, spider setup, and system monitoring.
- Developed tools for managing spiders, tasks, nodes, schedules, and system health.
- Implemented a mock client for testing server functionality.
- Added versioning support with version.ts.
- Created a test script (test-server.mjs) to validate tool configurations and server responses.
- Included build validation script (validate-build.mjs) to ensure proper setup and functionality.
- Configured TypeScript settings with tsconfig.json for better development experience.
2025-06-19 15:38:45 +08:00

35 lines
623 B
JSON

{
"compilerOptions": {
"outDir": "dist",
"rootDir": "src",
"baseUrl": "src",
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "bundler",
"strict": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"paths": {
"@tools/*": [
"tools/*"
],
"@types/*": [
"types/*"
],
"@utils/*": [
"utils/*"
]
}
},
"include": [
"./src/**/*"
],
"exclude": [
"node_modules",
"dist"
]
}