-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtsconfig.json
62 lines (62 loc) · 1.12 KB
/
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
51
52
53
54
55
56
57
58
59
60
61
62
{
"compilerOptions": {
"baseUrl": "./",
"declaration": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"incremental": true,
"lib": [
"es2019"
],
"module": "commonjs",
"outDir": "./dist",
"paths": {
"@app/auth": [
"libs/auth/src"
],
"@app/config": [
"libs/config/src"
],
"@app/coupon": [
"libs/coupon/src"
],
"@app/entity": [
"libs/entity/src"
],
"@app/event": [
"libs/event/src"
],
"@app/menu": [
"libs/menu/src"
],
"@app/order": [
"libs/order/src"
],
"@app/restaurant": [
"libs/restaurant/src"
],
"@app/review": [
"libs/review/src"
],
"@app/test-util": [
"libs/test-util/src"
],
"@app/type": [
"libs/type/src"
],
"@app/user": [
"libs/user/src"
],
"@app/util": [
"libs/util/src"
]
},
"removeComments": true,
"sourceMap": true,
"target": "es2017"
},
"exclude": [
"dist",
"node_modules"
]
}