25 lines
546 B
JSON
25 lines
546 B
JSON
{
|
|
"compilerOptions": {
|
|
"composite": true,
|
|
"module": "ESNext",
|
|
"moduleResolution": "Bundler",
|
|
"target": "ES2022",
|
|
"lib": ["ES2022"],
|
|
"types": ["node"],
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"resolveJsonModule": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"outDir": "./out/types-node"
|
|
},
|
|
"include": [
|
|
"src/main/**/*",
|
|
"src/preload/**/*",
|
|
"src/shared/**/*",
|
|
"electron.vite.config.ts"
|
|
]
|
|
}
|