-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathtsconfig.json
More file actions
28 lines (28 loc) · 848 Bytes
/
tsconfig.json
File metadata and controls
28 lines (28 loc) · 848 Bytes
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
{
"extends": "./tsconfig.node22.json",
"compilerOptions": {
"module": "CommonJS",
"outDir": "dist",
"sourceMap": true,
"rootDir": "src",
"strict": true /* enable all strict type-checking options */,
"esModuleInterop": true,
"paths": {
// workaround for: https://github.com/rollup/rollup/issues/5199#issuecomment-2095374821
"rollup/parseAst": ["./node_modules/rollup/dist/parseAst"]
}
},
"include": ["src"],
"exclude": [
"node_modules",
// Exclude tests as they have their own tsconfigs.
"e2e",
"e2e-testing",
// Exclude `testUtils` and `mcpTestUtils` which have `vitest` imports to avoid conflicting types
// for the `chai` npm package.
"src/testUtils.ts",
"src/mcp/utils/mcpTestUtils.ts",
"**/*.spec.ts"
],
"references": [{ "path": "./e2e-testing" }]
}