diff options
Diffstat (limited to 'apps/mcp/tsconfig.json')
| -rw-r--r-- | apps/mcp/tsconfig.json | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/apps/mcp/tsconfig.json b/apps/mcp/tsconfig.json new file mode 100644 index 00000000..dead8a5f --- /dev/null +++ b/apps/mcp/tsconfig.json @@ -0,0 +1,20 @@ +{ + "compilerOptions": { + "target": "ESNext", + "module": "ESNext", + "moduleResolution": "Bundler", + "strict": true, + "skipLibCheck": true, + "lib": ["ESNext"], + "types": ["@cloudflare/workers-types"], + "jsx": "react-jsx", + "jsxImportSource": "hono/jsx", + "esModuleInterop": true, + "resolveJsonModule": true, + "outDir": "dist", + "rootDir": "src", + "baseUrl": ".", + }, + "include": ["src/**/*"], + "exclude": ["node_modules"], +} |