-
Notifications
You must be signed in to change notification settings - Fork 11.9k
Closed
Description
In angular-cli.json
there is an apps
entry. Does this mean that the cli supports multiple entry points like so?
"apps": [
{
"main": "src/main.ts",
"tsconfig": "src/tsconfig.json",
"mobile": false
},
{
"main": "src/secondary.ts",
"tsconfig": "src/tsconfig.json",
"mobile": false
}
]
This would be incredibly useful for (electron/nwjs) apps that live in seperate windows and communicate via ipc or localstorage events.
maku, jpkeisala, kondi, dbettini, AlexKhymenko and 2 more