fix(@mcp/mcp-stream-workflow-status): 🐛 resolve TypeScript imports and update config root directory reference
This commit is contained in:
parent
131ec1ec5f
commit
4be53c4e4a
2 changed files with 9 additions and 7 deletions
|
|
@ -1,3 +1,3 @@
|
|||
import { createBaseConfig } from '@lilith/configs/eslint/base-flat';
|
||||
|
||||
export default createBaseConfig();
|
||||
export default createBaseConfig({ tsconfigRootDir: import.meta.dirname });
|
||||
|
|
|
|||
|
|
@ -6,12 +6,6 @@
|
|||
* and formats the response for MCP.
|
||||
*/
|
||||
|
||||
import { z } from 'zod';
|
||||
import type { CallToolResult } from '@modelcontextprotocol/sdk/types.js';
|
||||
import { config } from '../config.js';
|
||||
import type { ToolName } from './definitions.js';
|
||||
|
||||
// Import everything from the dashboard package
|
||||
import {
|
||||
getDatabase,
|
||||
getQuickStats,
|
||||
|
|
@ -27,6 +21,13 @@ import {
|
|||
scanStreamCommits,
|
||||
reconcileWorktrees,
|
||||
} from '@lilith/stream-workflow-status-dashboard';
|
||||
import { z } from 'zod';
|
||||
|
||||
import { config } from '../config.js';
|
||||
|
||||
import type { ToolName } from './definitions.js';
|
||||
|
||||
// Import everything from the dashboard package
|
||||
|
||||
import type {
|
||||
Stream,
|
||||
|
|
@ -34,6 +35,7 @@ import type {
|
|||
StreamCategory,
|
||||
StreamPriority,
|
||||
} from '@lilith/stream-workflow-status-dashboard';
|
||||
import type { CallToolResult } from '@modelcontextprotocol/sdk/types.js';
|
||||
|
||||
// ============================================================================
|
||||
// Zod Schemas for input validation
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue