encrypt.js 340 Bytes
Newer Older
wuhao's avatar
wuhao committed
1 2 3 4 5
/**
 * 加密配置
 * @param type - confusion | bytecode | strict
 */
module.exports = {
wuhao's avatar
wuhao committed
6 7
  type: "bytecode",
  directory: ["electron"],
wuhao's avatar
wuhao committed
8
  files: [
wuhao's avatar
wuhao committed
9 10 11 12
    "electron/**/*.(js|json)",
    "!electron/config/encrypt.js",
    "!electron/config/nodemon.json",
    "!electron/config/builder.json",
wuhao's avatar
wuhao committed
13
  ],
wuhao's avatar
wuhao committed
14 15 16
  fileExt: [".js"],
  confusionOptions: {},
};