Files
electron-egg/electron/config/encrypt.js
2022-11-25 09:47:26 +08:00

13 lines
360 B
JavaScript

/**
* 加密配置
* @param {String} type - strict (first confusion and then bytecode) || bytecode || confusion
* @param {Array} directory - directory to be encrypted
* @param {Array} fileExt - file suffix to be encrypted, currently only .js is supported
*/
module.exports = {
type: 'bytecode',
directory: [
'electron'
],
fileExt: ['.js'],
};