pokemon-showdown/tsconfig.json
Guangcong Luo 23f9bfa1b7
Split up server/chat-commands/ (#5943)
`server/chat-commands.js` is now a directory. It's been split into
`core`, `moderation`, and `admin`. `info` and `roomsettings` from
`chat-plugins` have also moved to `chat-commands`.

Some cleanup:

- Bot commands for inserting HTML into rooms like `/adduhtml` have been
  moved from `info` into `admin`.

- `/a` has been renamed `/addline`, for clarity (and also moved from
  `info` into `admin`).

- Room management commands like `/createroom` and `/roomintro` were
  moved to `room-settings`

- `chat-commands/admin` has been TypeScripted
2019-11-15 11:12:54 +13:00

44 lines
1.3 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": [
"./.*-dist/**/*",
"./server/index.js",
"./server/chat-commands.js"
],
"include": [
"./config/formats.js",
"./data/*",
"./data/mods/*/*",
"./dev-tools/*.ts",
"./lib/*",
"./server/*",
"./server/tournaments/*",
"./server/chat-commands/*.ts",
"./server/chat-plugins/*.ts",
"./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-data.js",
"./server/chat-plugins/mafia.js",
"./server/chat-plugins/othermetas.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",
"./sim/**/*",
"./tools/set-import/*.ts"
]
}