-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
37 lines (37 loc) · 942 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
{
"compilerOptions": {
"lib": ["es2015", "es2016.array.include", "es2017.object"],
"noEmit": true,
"target": "esnext",
"module": "commonjs",
"moduleResolution": "node",
"strict": true,
"allowJs": true,
"checkJs": true
},
"types": ["node"],
"include": [
"./dev-tools/global.d.ts",
"./dev-tools/globals.ts",
"./dev-tools/node.d.ts",
"./sim/*.js",
"./lib/*.js",
"./dnsbl.js",
"./ladders-local.js",
"./ladders-remote.js",
"./ladders.js",
"./monitor.js",
"./loginserver.js",
"./rooms.js",
"./roomlogs.js",
"./chat-formatter.js",
"./room-game.js",
"./room-battle.js",
"./process-manager.js",
"./team-validator-async.js",
"./verifier.js",
"./chat.js",
"./users.js",
"./punishments.js"
]
}