From 3b22097573c973d38ef71c9efc58868db9cab534 Mon Sep 17 00:00:00 2001 From: zgaetano Date: Tue, 31 Mar 2026 15:33:29 -0400 Subject: [PATCH] Add erpnext-mcp/tsconfig.json --- erpnext-mcp/tsconfig.json | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 erpnext-mcp/tsconfig.json diff --git a/erpnext-mcp/tsconfig.json b/erpnext-mcp/tsconfig.json new file mode 100644 index 0000000..f4624bd --- /dev/null +++ b/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"] +}