- ".angular-cli.json" has been renamed in Angular 6 for "angular.json" - Found out that some nested typscript files were still bundled
41 lines
653 B
JSON
41 lines
653 B
JSON
{
|
|
"productName": "angular-electron",
|
|
"directories": {
|
|
"output": "release/"
|
|
},
|
|
"files": [
|
|
"**/*",
|
|
"!**/*.ts",
|
|
"!*.code-workspace",
|
|
"!LICENSE.md",
|
|
"!package.json",
|
|
"!package-lock.json",
|
|
"!src/",
|
|
"!e2e/",
|
|
"!hooks/",
|
|
"!angular.json",
|
|
"!_config.yml",
|
|
"!karma.conf.js",
|
|
"!tsconfig.json",
|
|
"!tslint.json"
|
|
],
|
|
"win": {
|
|
"icon": "dist",
|
|
"target": [
|
|
"portable"
|
|
]
|
|
},
|
|
"mac": {
|
|
"icon": "dist",
|
|
"target": [
|
|
"dmg"
|
|
]
|
|
},
|
|
"linux": {
|
|
"icon": "dist",
|
|
"target": [
|
|
"AppImage"
|
|
]
|
|
}
|
|
}
|