2026-07-09 16:25:59 +08:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"target": "ES2022",
|
|
|
|
|
"module": "NodeNext",
|
|
|
|
|
"moduleResolution": "NodeNext",
|
|
|
|
|
"lib": ["ES2023"],
|
|
|
|
|
"types": ["node"],
|
|
|
|
|
"strict": true,
|
|
|
|
|
"noImplicitAny": false,
|
|
|
|
|
"noEmit": true,
|
|
|
|
|
"allowImportingTsExtensions": true,
|
|
|
|
|
"allowJs": true,
|
|
|
|
|
"checkJs": false,
|
|
|
|
|
"erasableSyntaxOnly": true,
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
|
"forceConsistentCasingInFileNames": true
|
|
|
|
|
},
|
2026-07-14 18:11:51 +08:00
|
|
|
"include": ["src/main/**/*", "src/preload/**/*", "src/shared/**/*"],
|
2026-07-09 16:25:59 +08:00
|
|
|
"exclude": ["node_modules", "out", "dist", "release", "src/renderer"]
|
|
|
|
|
}
|