-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
31 lines (31 loc) · 1.07 KB
/
tsconfig.json
File metadata and controls
31 lines (31 loc) · 1.07 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
{
"compilerOptions": {
"target": "ES2022",
"module": "Node16",
"moduleResolution": "Node16",
"lib": ["ES2022"],
"jsx": "react-jsx",
"noEmit": true,
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"noUncheckedIndexedAccess": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"exactOptionalPropertyTypes": false,
"isolatedModules": true,
"paths": {
"@alpclaw/utils": ["./packages/utils/src/index.ts"],
"@alpclaw/config": ["./packages/config/src/index.ts"],
"@alpclaw/safety": ["./packages/safety/src/index.ts"],
"@alpclaw/memory": ["./packages/memory/src/index.ts"],
"@alpclaw/providers": ["./packages/providers/src/index.ts"],
"@alpclaw/connectors": ["./packages/connectors/src/index.ts"],
"@alpclaw/skills": ["./packages/skills/src/index.ts"],
"@alpclaw/core": ["./packages/core/src/index.ts"]
}
},
"exclude": ["node_modules", "dist", "coverage"]
}