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