This commit is contained in:
2025-11-06 02:27:46 +11:00
commit e5d558fd98
51 changed files with 11385 additions and 0 deletions

15
tsconfig.main.json Normal file
View File

@@ -0,0 +1,15 @@
{
"extends": "./tsconfig.base.json",
"compilerOptions": {
"module": "CommonJS",
"outDir": "dist/main",
"rootDir": "src",
"types": ["node"],
"composite": true
},
"include": [
"src/main/**/*.ts",
"src/preload/**/*.ts",
"src/shared/**/*.ts"
]
}