added electron

This commit is contained in:
2024-10-31 15:50:55 +02:00
parent a449bc7497
commit 839dd30ee1
22 changed files with 7826 additions and 167 deletions

15
electron/tsconfig.json Normal file
View File

@@ -0,0 +1,15 @@
{
"compileOnSave": true,
"include": ["./src/**/*", "./capacitor.config.ts", "./capacitor.config.js"],
"compilerOptions": {
"outDir": "./build",
"importHelpers": true,
"target": "ES2017",
"module": "CommonJS",
"moduleResolution": "node",
"esModuleInterop": true,
"typeRoots": ["./node_modules/@types"],
"allowJs": true,
"rootDir": "."
}
}