multica/apps/desktop
Naiyuan Qing ff026b122d feat(desktop): scaffold Electron app with Vite
Add initial Electron desktop app using vite-plugin-electron template
with React and TypeScript.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-30 11:34:09 +08:00
..
dist-electron feat(desktop): scaffold Electron app with Vite 2026-01-30 11:34:09 +08:00
electron feat(desktop): scaffold Electron app with Vite 2026-01-30 11:34:09 +08:00
public feat(desktop): scaffold Electron app with Vite 2026-01-30 11:34:09 +08:00
src feat(desktop): scaffold Electron app with Vite 2026-01-30 11:34:09 +08:00
.eslintrc.cjs feat(desktop): scaffold Electron app with Vite 2026-01-30 11:34:09 +08:00
.gitignore feat(desktop): scaffold Electron app with Vite 2026-01-30 11:34:09 +08:00
electron-builder.json5 feat(desktop): scaffold Electron app with Vite 2026-01-30 11:34:09 +08:00
index.html feat(desktop): scaffold Electron app with Vite 2026-01-30 11:34:09 +08:00
package.json feat(desktop): scaffold Electron app with Vite 2026-01-30 11:34:09 +08:00
README.md feat(desktop): scaffold Electron app with Vite 2026-01-30 11:34:09 +08:00
tsconfig.json feat(desktop): scaffold Electron app with Vite 2026-01-30 11:34:09 +08:00
tsconfig.node.json feat(desktop): scaffold Electron app with Vite 2026-01-30 11:34:09 +08:00
vite.config.ts feat(desktop): scaffold Electron app with Vite 2026-01-30 11:34:09 +08:00

React + TypeScript + Vite

This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.

Currently, two official plugins are available:

Expanding the ESLint configuration

If you are developing a production application, we recommend updating the configuration to enable type aware lint rules:

  • Configure the top-level parserOptions property like this:
export default {
  // other rules...
  parserOptions: {
    ecmaVersion: 'latest',
    sourceType: 'module',
    project: ['./tsconfig.json', './tsconfig.node.json'],
    tsconfigRootDir: __dirname,
  },
}
  • Replace plugin:@typescript-eslint/recommended to plugin:@typescript-eslint/recommended-type-checked or plugin:@typescript-eslint/strict-type-checked
  • Optionally add plugin:@typescript-eslint/stylistic-type-checked
  • Install eslint-plugin-react and add plugin:react/recommended & plugin:react/jsx-runtime to the extends list