-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
48 lines (43 loc) · 1.41 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
45
46
47
48
{
"compilerOptions": {
"module": "commonjs",
"lib": ["es6", "dom"],
"types": ["node", "jest"],
"moduleResolution": "node",
"strict": true,
"alwaysStrict": true,
"strictNullChecks": true,
"strictBindCallApply": true,
"esModuleInterop": true,
"declaration": true,
"removeComments": false,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"skipLibCheck": true,
"allowJs": true,
"target": "es2017",
"outDir": "./lib",
"baseUrl": "./",
"resolveJsonModule": true,
"incremental": true,
"paths": {
"@repositories/*": ["./src/domain/repositories/*"],
"@models/*": ["./src/domain/models/*"],
"@services/*": ["./src/domain/services/*"],
"@infrastructures/*": ["./src/infrastructures/*"],
"@database/*": ["./src/infrastructures/database/*"],
"@external_service/*": ["./src/infrastructures/external_service/*"],
"@interfaces/*": ["./src/interfaces/*"],
"@controllers/*": ["./src/interfaces/controllers/*"],
"@gateways/*": ["./src/interfaces/gateways/*"],
"@shared/*": ["./src/shared/*"],
"@constants/*": ["./src/shared/constants/*"],
"@usecases/*": ["./src/usecases/*"],
"@utilities/*": ["./src/utilities/*"],
"src/*": ["./src/*"]
}
},
"include": ["./src/**/*", "test"],
"exclude": ["./node_modules", "./lib"]
}