forked from TrafficGuard/sophia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
37 lines (36 loc) · 1 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
{
"$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,
"moduleResolution": "node16",
"baseUrl": "./",
"paths": {
"#agent/*": ["./src/agent/*"],
"#fastify/*": ["./src/fastify/*"],
"#functionSchema/*": ["./src/functionSchema/*"],
"#functions/*": ["./src/functions/*"],
"#llm/*": ["./src/llm/*"],
"#model/*": ["./src/model/*"],
"#o11y/*": ["./src/o11y/*"],
"#services/*": ["./src/services/*"],
"#swe/*": ["./src/swe/*"],
"#user/*": ["./src/user/*"],
"#utils/*": ["./src/utils/*"]
},
"types": ["node", "mocha"]
},
"exclude": ["frontend"]
}