mirror of
https://github.com/langchain-ai/langchainjs-mcp-adapters.git
synced 2026-07-01 12:27:48 -04:00
72b740ffcf
* break: remove winston in favor of the debug package * fix: add missing test coverage dev dependency
19 lines
556 B
JSON
19 lines
556 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"module": "NodeNext",
|
|
"moduleResolution": "NodeNext",
|
|
"declaration": false,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"sourceMap": true,
|
|
"downlevelIteration": true,
|
|
"noEmit": true, // we just want type checking - no need to output for inclusion in the published module
|
|
"resolveJsonModule": true
|
|
},
|
|
"include": ["examples/**/*", "src/**/*"],
|
|
"exclude": ["node_modules", "dist", "**/*.test.ts"]
|
|
}
|