2022-11-12 02:09:28 +05:30
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2023-10-25 17:14:22 +05:30
|
|
|
"target": "es2016",
|
|
|
|
"module": "commonjs",
|
|
|
|
"rootDir": "./",
|
|
|
|
"outDir": "./export",
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"strict": true,
|
|
|
|
"noImplicitAny": false,
|
2024-04-17 21:48:45 +05:30
|
|
|
"skipLibCheck": true,
|
|
|
|
"paths": {
|
|
|
|
"@electron/*": ["./electron/*"],
|
2024-10-04 14:45:54 +05:30
|
|
|
"@/*": ["./renderer/*"],
|
|
|
|
"@common/*": ["./common/*"]
|
2024-04-17 21:48:45 +05:30
|
|
|
}
|
2022-11-12 02:09:28 +05:30
|
|
|
},
|
2024-12-15 14:25:18 +05:30
|
|
|
"include": [
|
|
|
|
"./electron/**/*",
|
|
|
|
"./common/**/*",
|
|
|
|
"./renderer/**/*",
|
|
|
|
"scripts/generate-schema.js",
|
|
|
|
"scripts/validate-schema.js"
|
|
|
|
],
|
2022-11-12 02:09:28 +05:30
|
|
|
"exclude": ["node_modules", "public", "renderer"]
|
|
|
|
}
|