forked from kentcdodds/kody
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig-tools.json
More file actions
42 lines (42 loc) · 1.36 KB
/
Copy pathtsconfig-tools.json
File metadata and controls
42 lines (42 loc) · 1.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"extends": "@epic-web/config/typescript",
"compilerOptions": {
"composite": true,
"allowImportingTsExtensions": true,
"target": "ES2023",
"lib": ["ES2023", "ESNext.Disposable"],
"baseUrl": ".",
// Force MCP SDK to resolve to the hoisted install to avoid duplicate
// private type conflicts when multiple copies are present.
"paths": {
"@modelcontextprotocol/sdk": ["./node_modules/@modelcontextprotocol/sdk"],
"@modelcontextprotocol/sdk/*": [
"./node_modules/@modelcontextprotocol/sdk/*"
]
},
"module": "ESNext",
"types": ["node"],
"moduleResolution": "bundler",
"verbatimModuleSyntax": true,
"moduleDetection": "force",
"noUnusedLocals": true,
"noUnusedParameters": true,
"erasableSyntaxOnly": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedSideEffectImports": true,
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.tools.tsbuildinfo"
},
"include": [
"./playwright.config.ts",
"./wrangler-env.ts",
"./cli.ts",
"./packages/worker/src/mcp/execute-modules/**/*.ts",
"./packages/worker/src/mcp/apps/claude-widget-domain.ts",
"./packages/worker/src/mcp/mcp-server.mcp-e2e.test.ts",
"./packages/worker/src/mcp/test-process.ts",
"./packages/worker/src/test-support/msw-node-server.ts",
"./packages/worker/src/test-support/cloudflare-mock-server.ts",
"./tools/**/*.ts",
"./packages/shared/src/**/*.ts"
]
}