mirror of
https://gitee.com/dromara/electron-egg.git
synced 2026-05-14 11:52:07 +08:00
13 lines
360 B
JavaScript
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'],
|
|
}; |