mirror of
https://github.com/smogon/pokemon-showdown.git
synced 2026-03-21 17:25:10 -05:00
40 lines
1.1 KiB
JSON
40 lines
1.1 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/helptickets.js",
|
|
"./server/chat-plugins/mafia-data.js",
|
|
"./server/chat-plugins/room-faqs.js",
|
|
"./server/chat-plugins/thecafe.js",
|
|
"./server/chat-plugins/thing-of-the-day.js",
|
|
"./server/chat-plugins/wifi.js",
|
|
"./sim/**/*",
|
|
"./tools/set-import/*.ts"
|
|
]
|
|
}
|