2022-11-11 21:39:28 +01:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2023-10-25 13:44:22 +02:00
|
|
|
"target": "es2016",
|
|
|
|
"module": "commonjs",
|
|
|
|
"rootDir": "./",
|
|
|
|
"outDir": "./export",
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"strict": true,
|
|
|
|
"noImplicitAny": false,
|
2024-04-17 18:18:45 +02:00
|
|
|
"skipLibCheck": true,
|
|
|
|
"paths": {
|
|
|
|
"@electron/*": ["./electron/*"],
|
|
|
|
"@/*": ["./renderer/*"]
|
|
|
|
}
|
2022-11-11 21:39:28 +01:00
|
|
|
},
|
2024-04-17 18:18:45 +02:00
|
|
|
"include": ["./electron/**/*", "./common/**/*", "./renderer/**/*"],
|
2022-11-11 21:39:28 +01:00
|
|
|
"exclude": ["node_modules", "public", "renderer"]
|
|
|
|
}
|