initial commit

This commit is contained in:
2025-11-11 12:09:49 -05:00
commit a2dca57fd2
23 changed files with 6424 additions and 0 deletions

16
tsconfig.json Executable file
View File

@@ -0,0 +1,16 @@
{
"compilerOptions": {
"jsx": "react-jsx",
"target": "ES2020",
"module": "commonjs",
"moduleResolution": "node",
"esModuleInterop": true,
"skipLibCheck": true,
"strict": true,
"resolveJsonModule": true,
"outDir": "./dist",
"typeRoots": ["./src/types", "./node_modules/@types"]
},
"exclude": ["node_modules"],
"include": ["electron/**/*", "src"]
}