Skip to content

Commit a50dd62

Browse files
committed
Update tsconfig.json
1 parent 07bd67c commit a50dd62

File tree

1 file changed

+19
-13
lines changed

1 file changed

+19
-13
lines changed

packages/mcp-client/tsconfig.json

Lines changed: 19 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,20 @@
11
{
2-
"compilerOptions": {
3-
"target": "es5",
4-
"module": "commonjs",
5-
"strict": true,
6-
"esModuleInterop": true,
7-
"skipLibCheck": true,
8-
"forceConsistentCasingInFileNames": true,
9-
"outDir": "./dist",
10-
"rootDir": "./src"
11-
},
12-
"include": ["src"], // Changed to only include the src directory
13-
"exclude": ["dist"]
14-
}
2+
"compilerOptions": {
3+
"allowSyntheticDefaultImports": true,
4+
"lib": ["ES2022", "DOM"],
5+
"module": "CommonJS",
6+
"moduleResolution": "node",
7+
"target": "ES2022",
8+
"forceConsistentCasingInFileNames": true,
9+
"strict": true,
10+
"noImplicitAny": true,
11+
"strictNullChecks": true,
12+
"skipLibCheck": true,
13+
"noImplicitOverride": true,
14+
"outDir": "./dist",
15+
"declaration": true,
16+
"declarationMap": true
17+
},
18+
"include": ["src"],
19+
"exclude": ["dist"]
20+
}

0 commit comments

Comments
 (0)