22 lines
439 B
JSON
22 lines
439 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"strict": true,
|
|
"jsx": "react-jsx",
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"noEmit": true,
|
|
"types": ["node"]
|
|
},
|
|
"include": [
|
|
"electron.vite.config.ts",
|
|
"src/shared/**/*.ts",
|
|
"src/main/**/*.ts",
|
|
"src/preload/**/*.ts",
|
|
"src/renderer/**/*.ts",
|
|
"src/renderer/**/*.tsx"
|
|
]
|
|
}
|