'use strict'; module.exports = () => { const config = (exports = {}); // 可操作范围的根目录 config.dirRoot = 'D:\\free'; // 检查的盘符 config.checkDrive = 'D:'; // 占用空间警告线 config.redLine = 80; // 百分制 // 邮件接收人 config.receiver = 'guhongwei0324@163.com'; return config; };