Initial Commit

This commit is contained in:
Damian Wessels
2025-09-08 11:01:51 +02:00
commit fd33b5ceba
81 changed files with 17432 additions and 0 deletions

32
electron/tsconfig.json Normal file
View File

@@ -0,0 +1,32 @@
{
"compilerOptions": {
"jsx": "react-jsx",
"target": "ESNext",
"module": "ESNext",
"lib": ["dom", "ESNext"],
"experimentalDecorators": true,
"composite": true,
"declaration": true,
"forceConsistentCasingInFileNames": true,
"allowJs": false,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"noImplicitAny": true,
"sourceMap": true,
"strict": true,
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"]
},
"outDir": "dist",
"moduleResolution": "bundler",
"resolveJsonModule": true
},
"include": [
"src/**/*",
"./package.json",
"./forge.config.ts",
"*.mts",
"vite.renderer.config.mts"
]
}