- Enhanced package.json scripts by adding a new linting command for the MCP workspace and updating the check script to include MCP linting. - Modified CI workflow to replace individual typecheck and lint steps with a consolidated validation step for improved efficiency. - Introduced a new TypeScript configuration for testing in the MCP server, enhancing type checking capabilities. - Reorganized imports in several components for better clarity and maintainability.
10 lines
228 B
JSON
10 lines
228 B
JSON
{
|
|
"extends": "./tsconfig.json",
|
|
"compilerOptions": {
|
|
"rootDir": ".",
|
|
"noEmit": true,
|
|
"types": ["node", "vitest/globals"]
|
|
},
|
|
"include": ["src/**/*.ts", "test/**/*.ts"],
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|