-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtsconfig.server.json
More file actions
47 lines (47 loc) · 1.18 KB
/
Copy pathtsconfig.server.json
File metadata and controls
47 lines (47 loc) · 1.18 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
39
40
41
42
43
44
45
46
47
{
"compilerOptions": {
"target": "ES2022",
"module": "ES2022",
"lib": ["ES2022"],
"moduleResolution": "node",
"outDir": "./dist/server",
"rootDir": "./src",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"noEmit": false,
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"allowSyntheticDefaultImports": true,
"types": ["node"],
"paths": {
"@shared/*": ["./src/shared/*"],
"@services/*": ["./src/services/*"],
"@parsers/*": ["./src/parsers/*"],
"@filters/*": ["./src/filters/*"],
"@database/*": ["./src/database/*"],
"@config/*": ["./src/config/*"],
"@monitoring/*": ["./src/monitoring/*"],
"@types/*": ["./src/types/*"]
},
"baseUrl": "."
},
"include": [
"src/cli/**/*",
"src/server/**/*",
"src/services/**/*",
"src/parsers/**/*",
"src/filters/**/*",
"src/database/**/*",
"src/config/**/*",
"src/monitoring/**/*",
"src/types/**/*",
"src/shared/**/*",
"src/utils/**/*",
"src/scripts/**/*"
],
"exclude": ["node_modules", "dist"]
}