alex8088 / electron-vite-boilerplate

Comprehensive and security Electron template (TypeScript + Vue3 + Vite).

Home Page:https://electron-vite.org

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

tsconfig.node.json include all files in src/main

Kinqdos opened this issue · comments

Shouldnt the tsconfig.node.json include all files in src/main and src/preload instead of only the root ones?

So instead of:

"include": ["electron.vite.config.*", "src/main/*", "src/preload/*"],

use this:

"include": ["electron.vite.config.*", "src/main/**/*", "src/preload/**/*"],