-
Notifications
You must be signed in to change notification settings - Fork 46
/
tsconfig.json
57 lines (57 loc) · 1.57 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
{
"compilerOptions": {
"lib": ["es2015", "es2016.array.include", "es2017.object"],
"noEmit": true,
"target": "esnext",
"module": "commonjs",
"moduleResolution": "node",
"strict": true,
"allowJs": true,
"checkJs": true
},
"types": ["node"],
"exclude": [
"./mods/gen1/pokedex.js",
"./mods/pic/*.js"
],
"include": [
"./config/formats.js",
"./data/*",
"./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",
"./mods/*/*",
"./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",
"./chat-plugins/chat-monitor.js",
"./chat-plugins/hangman.js",
"./chat-plugins/helptickets.js",
"./chat-plugins/mafia.js",
"./chat-plugins/mafia-data.js",
"./chat-plugins/othermetas.js",
"./chat-plugins/poll.js",
"./chat-plugins/room-faqs.js",
"./chat-plugins/thecafe.js",
"./chat-plugins/thing-of-the-day.js",
"./chat-plugins/uno.js",
"./chat-plugins/wifi.js",
"./punishments.js",
"./tournaments/generator-round-robin.js"
]
}