-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtsconfig.json
44 lines (44 loc) · 1.5 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
{
"compilerOptions": {
"skipLibCheck": true,
"strict": true,
"declaration": true,
"declarationMap": false,
"sourceMap": false,
"module": "ESNext",
"moduleResolution": "NodeNext",
"target": "ESNext",
"removeComments": false,
"rootDir": "./src",
"outDir": "./build",
"pretty": false,
"allowSyntheticDefaultImports": true,
"baseUrl": "src",
"paths": {
"@typing/*": ["types/*"],
"@constants/*": ["constants/*"],
"@define": ["define/index.js"],
"@define/*": ["define/*"],
"@handlers": ["handlers/index.js"],
"@handlers/*": ["handlers/*"],
"@messenger": ["messenger/index.js"],
"@messenger/*": ["messenger/*"],
"@pool": ["pool/index.js"],
"@pool/*": ["pool/*"],
"@runners": ["runners/index.js"],
"@runners/*": ["runners/*"],
"@service": ["service/index.js"],
"@service/*": ["service/*"],
"@service_cluster": ["service_cluster/index.js"],
"@service_cluster/*": ["service_cluster/*"],
"@shared_map": ["shared_map/index.js"],
"@shared_map/*": ["shared_map/*"],
"@streams": ["streams/index.js"],
"@streams/*": ["streams/*"],
"@utilities": ["utilities/index.js"],
"@nanolith": ["index.js"]
}
},
"include": ["./src"],
"exclude": ["./scripts"]
}