-
Notifications
You must be signed in to change notification settings - Fork 40
/
tsconfig.json
44 lines (43 loc) · 1.26 KB
/
tsconfig.json
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
39
40
41
42
43
44
{
"$schema": "https://json.schemastore.org/tsconfig",
"display": "Node 20",
"_version": "20.1.0",
"compilerOptions": {
"lib": ["es2023"],
"module": "node16",
"target": "es2022",
"outDir": "dist",
"noImplicitAny": false,
"strictNullChecks": false,
"useUnknownInCatchVariables": false,
"strict": true,
"declaration": false,
"isolatedDeclarations": false,
"esModuleInterop": true,
"skipLibCheck": true,
"importHelpers": true,
"moduleResolution": "node16",
"allowImportingTsExtensions": false,
"noEmit": false,
"baseUrl": "./",
"paths": {
"#agent/*": ["./src/agent/*"],
"#chat/*": ["./src/chat/*"],
"#fastify/*": ["./src/fastify/*"],
"#firestore*": ["./src/modules/firestore*"],
"#functionSchema/*": ["./src/functionSchema/*"],
"#functions/*": ["./src/functions/*"],
"#llm/*": ["./src/llm/*"],
"#model/*": ["./src/model/*"],
"#o11y/*": ["./src/o11y/*"],
"#services/*": ["./src/services/*"],
"#modules/*": ["./src/modules/*"],
"#slack/*": ["./src/modules/slack/*"],
"#swe/*": ["./src/swe/*"],
"#user/*": ["./src/user/*"],
"#utils/*": ["./src/utils/*"]
},
"types": ["node", "mocha"]
},
"exclude": ["frontend"]
}