pokemon-showdown/tsconfig.json
Guangcong Luo 2bcea34447 Support ./pokemon-showdown simulate-battle -S
simulate-battle now has a new option: --spectate.

As a recap:

-D --debug: simulate in debug mode

-R --replay: output only the omniscient (debug) replay, rather than the
  full stream

-S --spectate: output only the spectator replay, rather than the full
  stream
2020-09-29 15:28:07 -07:00

28 lines
578 B
JSON

{
"compilerOptions": {
"lib": ["es2019"],
"noEmit": true,
"target": "esnext",
"module": "commonjs",
"moduleResolution": "node",
"strict": true,
"allowJs": true,
"checkJs": true
},
"types": ["node"],
"exclude": [
"./.*-dist/**/*",
],
"include": [
"./config/*.ts",
"./data/*",
"./data/text/*",
"./data/mods/*/*",
"./dev-tools/*.ts",
"./lib/*",
"./server/**/*.ts",
"./sim/**/*",
"./tools/set-import/*.ts"
]
}