-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtsconfig.json
More file actions
41 lines (41 loc) · 919 Bytes
/
tsconfig.json
File metadata and controls
41 lines (41 loc) · 919 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
{
"files": [
"src/server.ts"
],
"include": [
"src/**/*.ts"
],
"compilerOptions": {
"module": "commonjs",
"noImplicitAny": true,
"target": "es6",
"outDir": "dist",
"rootDir": "",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"esModuleInterop": true,
"resolveJsonModule": true,
"sourceMap": true,
"baseUrl": "./src",
"moduleResolution": "node",
"removeComments": true,
"typeRoots": ["node_modules/@types"],
"paths": {
"constants/*": ["constants/*"],
"controllers/*": ["controllers/*"],
"middleware/*": ["middleware/*"],
"migration/*": ["migration/*"],
"models/*": ["models/*"],
"subscriber/*": ["subscriber/*"],
"utils/*": ["utils/*"],
"src/*": ["*"],
"*": [
"../node_modules/@types/*",
"types/*"
]
}
},
"exclude": [
"node_modules"
]
}