fix : tsconfig include electron (#134)

This commit is contained in:
任帅 2023-04-11 10:09:22 +08:00
parent 6ef956d5ef
commit 0da601ab2f
4 changed files with 4 additions and 4 deletions

View File

@ -55,7 +55,7 @@ async function createWindow() {
},
})
if (process.env.VITE_DEV_SERVER_URL) { // electron-vite-vue#298
if (url) { // electron-vite-vue#298
win.loadURL(url)
// Open devTool if the app is not packaged
win.webContents.openDevTools()

View File

@ -63,7 +63,7 @@ export function update(win: Electron.BrowserWindow) {
}
function startDownload(
callback: (error: Error | null, info: ProgressInfo) => void,
callback: (error: Error | null, info: ProgressInfo | null) => void,
complete: (event: UpdateDownloadedEvent) => void,
) {
autoUpdater.on('download-progress', info => callback(null, info))

View File

@ -22,6 +22,6 @@
]
},
},
"include": ["src"],
"include": ["src", "electron"],
"references": [{ "path": "./tsconfig.node.json" }]
}

View File

@ -6,5 +6,5 @@
"resolveJsonModule": true,
"allowSyntheticDefaultImports": true
},
"include": ["vite.config.ts", "package.json", "electron"]
"include": ["vite.config.ts", "package.json"]
}