PushGo Auto Commit 2026-03-27T01:00:57.339Z

This commit is contained in:
2026-03-27 09:00:57 +08:00
commit eafa1ffd57
29 changed files with 3213 additions and 0 deletions

17
tsconfig.main.json Normal file
View File

@@ -0,0 +1,17 @@
{
"compilerOptions": {
"target": "ES2022",
"module": "CommonJS",
"lib": ["ES2022", "DOM"],
"moduleResolution": "Node",
"outDir": "dist-electron",
"rootDir": "src",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"resolveJsonModule": true,
"types": ["node", "electron"],
"sourceMap": true
},
"include": ["src/main/**/*.ts", "src/preload/**/*.ts", "src/shared/**/*.ts"]
}