forked from Team-DDG/thikira-back-end
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
50 lines (50 loc) · 923 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"compilerOptions": {
"baseUrl": "./",
"declaration": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"incremental": true,
"module": "commonjs",
"outDir": "./dist",
"paths": {
"@app/coupon": [
"libs/coupon/src"
],
"@app/config": [
"libs/config/src"
],
"@app/db": [
"libs/db/src"
],
"@app/menu": [
"libs/menu/src"
],
"@app/order": [
"libs/order/src"
],
"@app/req": [
"libs/req/src"
],
"@app/restaurant": [
"libs/restaurant/src"
],
"@app/res": [
"libs/res/src"
],
"@app/user": [
"libs/user/src"
],
"@app/util": [
"libs/util/src"
]
},
"removeComments": true,
"sourceMap": true,
"target": "es2017"
},
"exclude": [
"dist",
"node_modules"
]
}