Add components for Act management and integrate Electron setup

This commit is contained in:
natreex
2025-11-16 11:00:04 -05:00
parent e192b6dcc2
commit 8167948881
97 changed files with 25378 additions and 3 deletions

22
tsconfig.electron.json Normal file
View File

@@ -0,0 +1,22 @@
{
"extends": "./tsconfig.json",
"compilerOptions": {
"module": "commonjs",
"moduleResolution": "node",
"target": "ES2022",
"outDir": "dist/electron",
"rootDir": "electron",
"lib": ["ES2022"],
"jsx": "react"
},
"include": [
"electron/**/*"
],
"exclude": [
"node_modules",
"dist",
"src",
".next",
"out"
]
}