-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathtsconfig.json
More file actions
executable file
·43 lines (43 loc) · 912 Bytes
/
tsconfig.json
File metadata and controls
executable file
·43 lines (43 loc) · 912 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"compilerOptions": {
"noImplicitAny": true,
"declaration": false,
"strict": true,
"strictNullChecks": false,
"target": "ES2019",
"module": "commonjs",
"resolveJsonModule": true,
"allowJs": false,
"checkJs": false,
"outDir": "dist",
"esModuleInterop": true,
"sourceMap": true,
"rootDir": "./src",
"baseUrl": "./src",
"paths": {
"@infrastructure/*": [
"infrastructure/*"
],
"@adapters/*": [
"adapters/*"
],
"@entities": [
"entities/index"
],
"@useCases/*": [
"use-cases/*"
]
},
"moduleResolution": "node"
},
"compileOnSave": true,
"include": [
"src/**/*.ts",
"src/**/*.js",
"src/**/*.json"
],
"exclude": [
"src/infrastructure/db/migrations/**/*",
"src/infrastructure/db/seeders/**/*"
]
}