Files
game-marathon/desktop/tsconfig.main.json
2026-01-10 08:48:52 +07:00

19 lines
453 B
JSON

{
"compilerOptions": {
"target": "ES2020",
"module": "CommonJS",
"lib": ["ES2020"],
"outDir": "dist/main",
"rootDir": "src",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"declaration": false,
"declarationMap": false,
"sourceMap": true
},
"include": ["src/main/**/*", "src/shared/**/*", "src/preload/**/*"]
}