-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
26 lines (26 loc) · 837 Bytes
/
tsconfig.base.json
File metadata and controls
26 lines (26 loc) · 837 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
{
"compilerOptions": {
"target": "ES2022",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"lib": ["ES2022"],
"strict": true,
"skipLibCheck": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"isolatedModules": true,
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"baseUrl": ".",
"paths": {
"@clawdentity/common": ["packages/common/src/index.ts"],
"@clawdentity/connector": ["packages/connector/src/index.ts"],
"@clawdentity/protocol": ["packages/protocol/src/index.ts"],
"@clawdentity/sdk": ["packages/sdk/src/index.ts"],
"@clawdentity/sdk/testing": ["packages/sdk/src/testing/index.ts"]
}
},
"exclude": ["node_modules", "dist", "**/worker-configuration.d.ts"]
}