-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathtsconfig.json
More file actions
37 lines (37 loc) · 1.35 KB
/
tsconfig.json
File metadata and controls
37 lines (37 loc) · 1.35 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
{
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"lib": ["ES2022"],
"moduleResolution": "bundler",
"resolveJsonModule": true,
"allowJs": true,
"strict": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"noFallthroughCasesInSwitch": true,
"noUncheckedIndexedAccess": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"baseUrl": ".",
"paths": {
"@mondaydotcomorg/atp-compiler": ["packages/atp-compiler/src/index.ts"],
"@agent-tool-protocol/cli": ["packages/cli/src/index.ts"],
"@mondaydotcomorg/atp-client": ["packages/client/src/index.ts"],
"@mondaydotcomorg/atp-langchain": ["packages/langchain/src/index.ts"],
"@mondaydotcomorg/atp-mcp-adapter": ["packages/mcp-adapter/src/index.ts"],
"@mondaydotcomorg/atp-protocol": ["packages/protocol/src/index.ts"],
"@mondaydotcomorg/atp-provenance": ["packages/provenance/src/index.ts"],
"@mondaydotcomorg/atp-providers": ["packages/providers/src/index.ts"],
"@mondaydotcomorg/atp-runtime": ["packages/runtime/src/index.ts"],
"@mondaydotcomorg/atp-server": ["packages/server/src/index.ts"]
}
},
"exclude": ["node_modules", "dist", "**/*.test.ts", "**/*.spec.ts"]
}