Website : rimsha.abasa.com
backdoor
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
var
/
canvas
/
node_modules
/
concurrently
/
src
/
Filename :
defaults.js
back
Copy
/** * This file is meant to be a shared place for default configs. * It's read by the flow controllers, the executable, etc. * * Refer to tests for the meaning of the different possible values. */ module.exports = { defaultInputTarget: 0, // Whether process.stdin should be forwarded to child processes handleInput: false, nameSeparator: ',', // Which prefix style to use when logging processes output. prefix: '', // Refer to https://www.npmjs.com/package/chalk prefixColors: 'gray.dim', // How many bytes we'll show on the command prefix prefixLength: 10, raw: false, // Number of attempts of restarting a process, if it exits with non-0 code restartTries: 0, // How many milliseconds concurrently should wait before restarting a process. restartDelay: 0, // Condition of success for concurrently itself. success: 'all', // Refer to https://date-fns.org/v1.29.0/docs/format timestampFormat: 'YYYY-MM-DD HH:mm:ss.SSS' };