feat: (mostly ai gen) electron app for native computer platforms

This commit is contained in:
2026-02-09 21:30:43 +01:00
parent 160fb0d36f
commit 13cf2b577c
14 changed files with 3399 additions and 36 deletions

16
electron/tsconfig.json Normal file
View File

@@ -0,0 +1,16 @@
{
"compilerOptions": {
"target": "ES2022",
"module": "CommonJS",
"moduleResolution": "node",
"esModuleInterop": true,
"strict": true,
"skipLibCheck": true,
"outDir": "./dist",
"rootDir": ".",
"declaration": true,
"resolveJsonModule": true
},
"include": ["main/**/*.ts", "preload/**/*.ts"],
"exclude": ["node_modules", "dist"]
}