Initial copy of shop partner app.

This commit is contained in:
Patrick Fic
2025-12-01 05:43:59 -08:00
commit 267ef714a7
193 changed files with 32199 additions and 0 deletions

17
tsconfig.node.json Normal file
View File

@@ -0,0 +1,17 @@
{
"extends": "@electron-toolkit/tsconfig/tsconfig.node.json",
"include": [
"electron.vite.config.*",
"src/main/**/*",
"src/preload/**/*",
"src/util/**/*",
"src/interfaces/**/*",
"tests/index.spec.ts",
"/resources/**/*"
],
"compilerOptions": {
"resolveJsonModule": true,
"composite": true,
"types": ["electron-vite/node", "vite/client"]
}
}