2024-02-22 11:22:19 +08:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "esnext",
|
|
|
|
"module": "CommonJS",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"strict": true,
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"allowJs": true,
|
2024-09-23 11:54:31 +08:00
|
|
|
"outDir": "dist/main",
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"skipLibCheck": true
|
2024-02-22 11:22:19 +08:00
|
|
|
},
|
|
|
|
"include": [
|
|
|
|
"src/main/app.ts",
|
|
|
|
"src/main/preload.js",
|
|
|
|
]
|
2024-09-23 11:54:31 +08:00
|
|
|
}
|