Skip to content

Commit 1bbd995

Browse files
committed
Fixed type errors
1 parent 81d8bd1 commit 1bbd995

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

test/utils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ export async function createMCPClient(serverUrl: string, args: string[] = []): P
1919
const transport = new StdioClientTransport({
2020
command: 'node',
2121
args: [resolve(__dirname, '../dist/proxy.js'), serverUrl, ...args],
22-
env: process.env,
22+
env: process.env as Record<string, string>,
2323
})
2424

2525
const client = new Client(

tsconfig.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,6 @@
1010
"types": ["node"],
1111
"forceConsistentCasingInFileNames": true,
1212
"resolveJsonModule": true
13-
}
13+
},
14+
"exclude": ["test"]
1415
}

0 commit comments

Comments
 (0)