'use strict';
/**
* @member Config#development
* @property {Array} watchDirs - dirs needed watch, when files under these change, application will reload, use relative path
* @property {Array} ignoreDirs - dirs don't need watch, including subdirectories, use relative path
* @property {Boolean} fastReady - don't wait all plugins ready, default is false.
* @property {Boolean} reloadOnDebug - whether reload on debug, default is true.
* @property {Boolean} overrideDefault - whether override default watchDirs, default is false.
* @property {Array|String} reloadPattern - whether to reload, use https://github.com/sindresorhus/multimatch
*/
exports.development = {
watchDirs: [],
ignoreDirs: [],
fastReady: false,
reloadOnDebug: true,
overrideDefault: false,
reloadPattern: undefined,
};