-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathtsconfig.json
More file actions
28 lines (27 loc) · 968 Bytes
/
tsconfig.json
File metadata and controls
28 lines (27 loc) · 968 Bytes
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
{
"compilerOptions": {
"target": "es2022",
"module": "commonjs",
"outDir": "./dist",
"rootDir": "./",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
/* Path Aliases */
"paths": {
"@plugins/*": ["./src/http/plugins/*"],
"@custom/*": ["./src/http/plugins/custom/*"],
"@hooks/*": ["./src/http/hooks/*"],
"@decorators/*": ["./src/http/decorators/*"],
"@routes/*": ["./src/http/routes/*"],
"@controllers/*": ["./src/http/controllers/*"],
"@typings/*": ["./src/http/types/*"],
"@generated/*": ["./src/generated/*"],
"@infrastructure/*": ["./src/infrastructure/*"],
"@core/*": ["./src/core/*"]
}
},
"include": ["src/**/*", "tests/**/*", "scripts/**/*"],
"exclude": ["node_modules", "dist"]
}