Initial commit: bip-sda project scaffold

Electron + TypeScript project initialized with electron-vite,
electron-builder, ESLint, and Prettier configuration.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Misaka_Company
2026-06-12 13:22:51 +08:00
commit f43c3d0a25
32 changed files with 750 additions and 0 deletions

8
tsconfig.node.json Normal file
View File

@@ -0,0 +1,8 @@
{
"extends": "@electron-toolkit/tsconfig/tsconfig.node.json",
"include": ["electron.vite.config.*", "src/main/**/*", "src/preload/**/*"],
"compilerOptions": {
"composite": true,
"types": ["electron-vite/node"]
}
}