-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
38 lines (38 loc) · 1.34 KB
/
tsconfig.base.json
File metadata and controls
38 lines (38 loc) · 1.34 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
38
{
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "Bundler",
"lib": ["ES2023"],
"strict": true,
"noUncheckedIndexedAccess": true,
"exactOptionalPropertyTypes": true,
"noImplicitOverride": true,
"noFallthroughCasesInSwitch": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"isolatedModules": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"composite": false,
"baseUrl": ".",
"paths": {
"@colony/compress": ["./packages/compress/src/index.ts"],
"@colony/config": ["./packages/config/src/index.ts"],
"@colony/core": ["./packages/core/src/index.ts"],
"@colony/embedding": ["./packages/embedding/src/index.ts"],
"@colony/foraging": ["./packages/foraging/src/index.ts"],
"@colony/storage": ["./packages/storage/src/index.ts"],
"@colony/hooks": ["./packages/hooks/src/index.ts"],
"@colony/installers": ["./packages/installers/src/index.ts"],
"@colony/mcp-server": ["./apps/mcp-server/src/server.ts"],
"@colony/process": ["./packages/process/src/index.ts"],
"@colony/worker": ["./apps/worker/src/server.ts"]
}
},
"exclude": ["node_modules", "dist"]
}