-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
44 lines (44 loc) · 1.15 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": {
"module": "ESNext",
"target": "ESNext",
"moduleResolution": "node",
"strict": false,
"declaration": false,
"removeComments": false,
"alwaysStrict": true,
"pretty": true,
"skipLibCheck": true,
"sourceMap": true,
"esModuleInterop": true,
"resolveJsonModule": true,
"rootDir": ".",
"outDir": "dist/",
"baseUrl": ".",
"paths": {
"*": [
"lib/interfaces/*"
],
"#src/*": ["./src/*"],
"#lib/*": ["./lib/*"],
"#structures/*": ["./src/structures/*"],
"#models/*": ["./src/models/*"],
"#events/*": ["./src/events/*"],
"#constants/*": ["./src/constants/*"],
"#routing/*": ["./src/routing/*"],
"#config": ["./config"],
"#itemList": ["./lib/utils/itemList"]
},
},
"watchOptions": {
"watchFile": "useFsEvents",
"watchDirectory": "useFsEvents",
"fallbackPolling": "dynamicPriority"
},
"exclude": [
"node_modules",
"./node_modules",
"./node_modules/*",
"./node_modules/@types/node/index.d.ts"
]
}