encrypt.js 260 B

12345678910111213141516
  1. /**
  2. * 加密配置
  3. */
  4. module.exports = {
  5. type: 'confusion',
  6. directory: [
  7. 'electron'
  8. ],
  9. fileExt: ['.js'],
  10. confusionOptions: {
  11. compact: true,
  12. stringArray: true,
  13. stringArrayEncoding: ['none'],
  14. deadCodeInjection: false,
  15. }
  16. };