import { app, BrowserWindow } from 'electron'; import { join } from 'path'; (async () => { await app.whenReady(); const mainWindow = new BrowserWindow({ width: 800, height: 600, webPreferences: { sandbox: false, preload: join(__dirname, 'preload-module.js'), }, }); mainWindow.loadFile('./view/index.html') })()