-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
48 lines (48 loc) · 1.27 KB
/
tsconfig.json
File metadata and controls
48 lines (48 loc) · 1.27 KB
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": {
"types": ["jest", "node", "express"],
"target": "es2018",
"module": "commonjs",
"esModuleInterop": true,
"resolveJsonModule": true,
"moduleResolution": "node",
"forceConsistentCasingInFileNames": true,
"noImplicitAny": true,
"outDir": "./dist",
"rootDir": "./src",
"strict": true,
"baseUrl": "./src",
"typeRoots": [
"./src/types",
"./node_modules/@types"
],
"paths": {
"controllers/*": ["app/controllers/*"],
"domain/*": ["app/domain/*"],
"middlewares": ["app/middlewares/index.ts"],
"__mocks__": ["app/__mocks__/index.ts"],
"repositories/*": ["app/repositories/*"],
"validators/*": ["app/validators/*.ts"],
"models/*": ["app/models/*.ts"],
"helpers/*": ["app/helpers/*"],
"routes": ["app/routes/index.ts"],
"schema/*": ["schema/*"],
"config/*": ["config/*"],
"lib/*": ["lib/*"],
"builders/*": ["app/builders/*"],
"@types/*": ["app/types/*"],
"@types": ["app/types"],
"services/*": ["app/services/*"],
"utils": ["utils/index.ts"]
},
},
"include": [
"src/**/*.ts",
"src/**/*.d.ts",
"src/swagger.json"
, "src/DatabaseManager.ts"],
"exclude": [
"node_modules",
"dist"
]
}