29 lines
648 B
JSON
29 lines
648 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "CommonJS",
|
|
"moduleResolution": "node",
|
|
"lib": ["ES2022", "DOM"],
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"resolveJsonModule": true,
|
|
"outDir": "dist",
|
|
"rootDir": "src",
|
|
"declaration": false,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@main/*": ["src/main/*"],
|
|
"@preload/*": ["src/preload/*"],
|
|
"@shared/*": ["src/shared/*"]
|
|
}
|
|
},
|
|
"include": [
|
|
"src/main/**/*",
|
|
"src/preload/**/*",
|
|
"src/shared/**/*"
|
|
],
|
|
"exclude": ["node_modules", "**/*.test.ts"]
|
|
}
|