feat(desktop): add tsconfig for Electron TypeScript files

This commit is contained in:
CREDO23 2026-03-17 16:18:44 +02:00
parent 9ffce90b01
commit 37cedc2de6

View file

@ -0,0 +1,16 @@
{
"compilerOptions": {
"target": "ES2022",
"module": "commonjs",
"lib": ["ES2022"],
"outDir": "./dist",
"rootDir": "./src",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"resolveJsonModule": true,
"noEmit": true
},
"include": ["src/**/*.ts"],
"exclude": ["node_modules", "dist", "scripts"]
}