chore: init v2 project scaffold

- Add electron-vite + Vue 3 + TypeScript build config
- Add .gitignore with legacy/ exclusion
- Add AGENTS.md with architecture & dev commands
- Update README.md
This commit is contained in:
2026-07-04 16:12:35 +08:00
parent 384acd8fc6
commit 3e06def637
8 changed files with 238 additions and 1 deletions
+14
View File
@@ -0,0 +1,14 @@
{
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "bundler",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"outDir": "./out",
"types": ["node"],
"composite": true
},
"include": ["src/main/**/*", "src/preload/**/*", "electron.vite.config.ts"]
}