mirror of
https://github.com/dream-pep/koring-launcher.git
synced 2026-09-12 05:45:18 +08:00
19 lines
448 B
JSON
19 lines
448 B
JSON
{
|
|||
|
|
"compilerOptions": {
|
||
|
|
"target": "ES2020",
|
||
|
|
"module": "commonjs",
|
||
|
|
"moduleResolution": "node",
|
||
|
|
"outDir": "electron",
|
||
|
|
"rootDir": "electron",
|
||
|
|
"strict": true,
|
||
|
|
"esModuleInterop": true,
|
||
|
|
"skipLibCheck": true,
|
||
|
|
"forceConsistentCasingInFileNames": true,
|
||
|
|
"resolveJsonModule": true,
|
||
|
|
"declaration": false,
|
||
|
|
"sourceMap": false
|
||
|
|
},
|
||
|
|
"include": ["electron/**/*.ts"],
|
||
|
|
"exclude": ["node_modules", "dist", "src"]
|
||
|
|
}
|