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