tsconfig.main.json 358 B

123456789101112131415
  1. {
  2. "compilerOptions": {
  3. "target": "ES2022",
  4. "module": "CommonJS",
  5. "moduleResolution": "Node",
  6. "lib": ["ES2022", "DOM"],
  7. "outDir": "dist/main",
  8. "rootDir": "src",
  9. "strict": true,
  10. "esModuleInterop": true,
  11. "skipLibCheck": true,
  12. "types": ["node", "electron"]
  13. },
  14. "include": ["src/main/**/*.ts", "src/shared/**/*.ts"]
  15. }