From 022a4e8d7274b9143444cc45b555b68c2ded72cd Mon Sep 17 00:00:00 2001 From: zgaetano Date: Tue, 31 Mar 2026 15:29:31 -0400 Subject: [PATCH] Add mcp-gateway/erpnext-mcp/tsconfig.json --- mcp-gateway/erpnext-mcp/tsconfig.json | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 mcp-gateway/erpnext-mcp/tsconfig.json diff --git a/mcp-gateway/erpnext-mcp/tsconfig.json b/mcp-gateway/erpnext-mcp/tsconfig.json new file mode 100644 index 0000000..f4624bd --- /dev/null +++ b/mcp-gateway/erpnext-mcp/tsconfig.json @@ -0,0 +1,19 @@ +{ + "compilerOptions": { + "target": "ES2022", + "module": "Node16", + "moduleResolution": "Node16", + "outDir": "./dist", + "rootDir": "./src", + "strict": true, + "esModuleInterop": true, + "skipLibCheck": true, + "forceConsistentCasingInFileNames": true, + "resolveJsonModule": true, + "declaration": true, + "declarationMap": true, + "sourceMap": true + }, + "include": ["src/**/*"], + "exclude": ["node_modules", "dist"] +}