-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
34 lines (34 loc) · 1.23 KB
/
tsconfig.json
File metadata and controls
34 lines (34 loc) · 1.23 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
{
"compilerOptions": {
"target": "ES2022",
"lib": ["ES2022"],
"module": "ESNext",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"esModuleInterop": true,
"strict": true,
"strictNullChecks": true,
"noEmit": true,
"skipLibCheck": true,
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"forceConsistentCasingInFileNames": true,
"isolatedModules": true,
"verbatimModuleSyntax": true,
"baseUrl": ".",
"typeRoots": ["./types", "./node_modules/@types"],
"paths": {
"@elizagotchi/database": ["packages/database/src"],
"@elizagotchi/shared": ["packages/shared/src"],
"@elizagotchi/agent-runtime": ["packages/agent-runtime/src"],
"@elizagotchi/agent-templates": ["packages/agent-templates/src"],
"@elizagotchi/plugin-blockchain": ["packages/plugins/plugin-blockchain/src"],
"@elizagotchi/plugin-discord": ["packages/plugins/plugin-discord/src"],
"@elizagotchi/plugin-github": ["packages/plugins/plugin-github/src"],
"@elizagotchi/plugin-rss": ["packages/plugins/plugin-rss/src"],
"@elizagotchi/plugin-telegram": ["packages/plugins/plugin-telegram/src"]
}
},
"exclude": ["node_modules", "dist", ".next"]
}