sharding-framework/options.jsonc

29 lines
736 B
Plaintext
Raw Permalink Normal View History

2024-03-31 12:46:28 +02:00
{
"clientPath": "client/Client.js", // Client (script that is ran in the child process) path relative to root dir
2024-03-31 13:19:36 +02:00
"logger": {
// See https://git.corgi.wtf/Navy.gif/logger for config reference
"customTypes": [],
"customStreams": [
"debug"
],
"customTypeMapping": {
"debug": "debug"
},
"customColours": {},
"logLevel": 0,
"logLevelMapping": {},
"broadcastLevel": 4,
"pruneDays": 7
},
2024-03-31 12:46:28 +02:00
"shardOptions": {
"totalShards": "auto",
2024-03-31 13:19:36 +02:00
"respawn": true,
"execArgv": [
"--enable-source-maps"
],
"debug": true
2024-03-31 12:46:28 +02:00
},
2024-03-31 13:19:36 +02:00
"client": {
"developmentMode": true
}
2024-03-31 12:46:28 +02:00
}