mirror of
https://github.com/smogon/pokemon-showdown.git
synced 2026-05-20 22:18:18 -05:00
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.
58 lines
1.8 KiB
JSON
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"
|
|
]
|
|
}
|