We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 99356dd commit fe24559Copy full SHA for fe24559
tsconfig.json
@@ -6,13 +6,40 @@
6
"outDir": "dist",
7
"rootDir": "src",
8
"strict": false,
9
+ "baseUrl": ".",
10
"esModuleInterop": true,
11
"experimentalDecorators": true,
12
"emitDecoratorMetadata": true,
13
"skipLibCheck": true,
14
"types": [
15
"node"
- ]
16
+ ],
17
+ "paths": {
18
+ "@models/*": [
19
+ "src/models/*"
20
21
+ "@dtos/*": [
22
+ "src/dtos/*"
23
24
+ "@repos/*": [
25
+ "src/repositories/*"
26
27
+ "@services/*": [
28
+ "src/services/*"
29
30
+ "@controllers/*": [
31
+ "src/controllers/*"
32
33
+ "@config/*": [
34
+ "src/config/*"
35
36
+ "@middleware/*": [
37
+ "src/middleware/*"
38
39
+ "@utils/*": [
40
+ "src/utils/*"
41
+ ]
42
+ }
43
},
44
"include": [
45
"src/**/*.ts",
0 commit comments