forked from CreaturePhil/Showdown-Boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 31
/
tsconfig.json
47 lines (47 loc) · 1.2 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
{
"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/suicidecup/scripts.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/helptickets.js",
"./chat-plugins/mafia.js",
"./chat-plugins/mafia-data.js",
"./punishments.js"
]
}