TEA Stack templateTypeScript / Electron / Angular to build a cross-platform appGlossaryapp means the Angular project used for the renderer process of Electronmain means the TypeScript project for the main process of ElectronBuildUsing @angular/cli to build web assets for the renderer processUsing esbuild to build a bundled app.min.js for the main processUsing electron-builder to build installers/executablesDevelopnpm install to get the depsnpm run start:app to serve the angular app at http://localhost:4200npm run start:main -- --serve to start up electron to debug with the served angular appnpm run build:out to get the output by electron-builderBuild installers/executables$ npm run build:app $ npm run build:main $ npm run build:prod