| 1234567891011121314151617181920212223242526272829303132333435363738 |
- /**
- * @see https://www.electron.build/configuration/configuration
- */
- {
- "$schema": "https://raw.githubusercontent.com/electron-userland/electron-builder/master/packages/app-builder-lib/scheme.json",
- "appId": "YourAppID",
- "asar": true,
- "directories": {
- "output": "release/${version}"
- },
- "files": [
- "dist-electron",
- "dist"
- ],
- "mac": {
- "artifactName": "${productName}_${version}.${ext}",
- "target": [
- "dmg"
- ]
- },
- "win": {
- "target": [
- {
- "target": "nsis",
- "arch": [
- "x64"
- ]
- }
- ],
- "artifactName": "${productName}_${version}.${ext}"
- },
- "nsis": {
- "oneClick": false,
- "perMachine": false,
- "allowToChangeInstallationDirectory": true,
- "deleteAppDataOnUninstall": false
- }
- }
|