-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
28 lines (28 loc) · 861 Bytes
/
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
{
"compilerOptions": {
"target": "ES2019",
"module": "Node16",
"moduleResolution": "Node16",
"lib": ["es2019"],
"declaration": true,
"outDir": "dist",
"strict": true,
"esModuleInterop": true,
"sourceMap": false,
"inlineSourceMap": true,
"inlineSources": true,
"resolveJsonModule": true,
"paths": {
"@db-client": ["./src/infrastructure/database/client"],
"@lib/*": ["./src/libraries/*"],
"@infrastructure/*": ["./src/infrastructure/*"],
"@utils/*": ["./src/utils/*"],
"@domain/*": ["./src/domain/*"],
"@application/*": ["./src/application/*"],
"@presentation/*": ["./src/presentation/*"],
"@fixtures/*": ["./src/__tests__/fixtures/*"],
"@test-utils/*": ["./src/__tests__/utils/*"]
}
},
"exclude": ["node_modules", "coverage", "dist", "public"]
}