22 lines
466 B
JSON
22 lines
466 B
JSON
{
|
|
"compilerOptions": {
|
|
"composite": true,
|
|
"target": "ES2022",
|
|
"module": "ESNext",
|
|
"moduleResolution": "Bundler",
|
|
"lib": ["ES2022"],
|
|
"types": ["node", "electron-vite/node"],
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"noEmit": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true
|
|
},
|
|
"include": [
|
|
"electron.vite.config.ts",
|
|
"src/main/**/*.ts",
|
|
"src/preload/**/*.ts",
|
|
"src/preload/**/*.d.ts"
|
|
]
|
|
}
|