mirror3/electron.tsconfig.json

14 lines
330 B
JSON
Raw Normal View History

2025-03-06 18:22:25 +00:00
{
"compilerOptions": {
"target": "ESNext",
"module": "CommonJS",
"rootDir": "electron",
"outDir": "dist-electron",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"types": ["node"],
"noEmit": false
},
"include": ["electron/**/*.ts"]
}