PoC Electron app (#264)

Initial version of Electron wrapper + build pipeline
This commit is contained in:
Zef Hemel
2023-01-03 20:46:52 +01:00
committed by GitHub
parent 558aee71fe
commit fdc08d893a
22 changed files with 20199 additions and 20 deletions
+19
View File
@@ -0,0 +1,19 @@
{
"compilerOptions": {
"target": "ES6",
"allowJs": true,
"module": "commonjs",
"skipLibCheck": true,
"esModuleInterop": true,
"noImplicitAny": true,
"sourceMap": true,
"baseUrl": ".",
"outDir": "dist",
"moduleResolution": "node",
"resolveJsonModule": true,
"paths": {
"*": ["node_modules/*"]
}
},
"include": ["src/**/*"]
}