38 lines
660 B
Plaintext
38 lines
660 B
Plaintext
|
/**
|
||
|
* @see https://www.electron.build/configuration/configuration
|
||
|
*/
|
||
|
{
|
||
|
"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
|
||
|
}
|
||
|
}
|