pokemon-showdown/tsconfig.json
Guangcong Luo f3e45fbb72 Move server code to server/
Also move mods/ to data/mods/

This makes PS more monorepo-like. The intent is to further separate
the sim and the server code, but without fully committing to splitting
the repository itself.

We now support `./pokemon-showdown start` in addition to
`./pokemon-showdown`. I'm not clear which I want to be the default
yet.
2019-02-03 16:07:06 -06:00

58 lines
1.8 KiB
JSON

{
"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": [
"./data/mods/gen1/pokedex.js"
],
"include": [
"./config/formats.js",
"./data/*",
"./dev-tools/global.d.ts",
"./dev-tools/globals.ts",
"./dev-tools/node.d.ts",
"./sim/*.js",
"./lib/*.js",
"./server/dnsbl.js",
"./server/ladders-local.js",
"./server/ladders-remote.js",
"./server/ladders.js",
"./data/mods/*/*",
"./server/monitor.js",
"./server/loginserver.js",
"./server/rooms.js",
"./server/roomlogs.js",
"./server/chat-formatter.js",
"./server/room-game.js",
"./server/room-battle.js",
"./server/process-manager.js",
"./server/team-validator-async.js",
"./server/verifier.js",
"./server/chat.js",
"./server/users.js",
"./server/chat-plugins/chat-monitor.js",
"./server/chat-plugins/daily-spotlight.js",
"./server/chat-plugins/hangman.js",
"./server/chat-plugins/helptickets.js",
"./server/chat-plugins/mafia.js",
"./server/chat-plugins/mafia-data.js",
"./server/chat-plugins/othermetas.js",
"./server/chat-plugins/poll.js",
"./server/chat-plugins/room-faqs.js",
"./server/chat-plugins/thecafe.js",
"./server/chat-plugins/thing-of-the-day.js",
"./server/chat-plugins/uno.js",
"./server/chat-plugins/wifi.js",
"./server/punishments.js",
"./server/tournaments/generator-round-robin.js"
]
}