think-tool-mcp
Version:
An MCP server implementing the think tool for Claude and other LLMs
20 lines • 462 B
JavaScript
/** @type {import('jest').Config} **/
module.exports = {
testEnvironment: 'node',
transform: {
'^.+\\.(ts|tsx)$': [
'ts-jest',
{
useESM: false,
tsconfig: {
module: 'CommonJS',
target: 'ES2019',
isolatedModules: true,
esModuleInterop: true,
},
},
],
},
moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx', 'json', 'node'],
testMatch: ['**/__tests__/**/*.test.ts'],
};