Set up electron-vite build (main/preload/renderer split), TypeScript project references, Vitest config, and a secure preload bridge exposing save/open diagram IPC. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
14 lines
313 B
JSON
14 lines
313 B
JSON
{
|
|
"compilerOptions": {
|
|
"composite": true,
|
|
"target": "ES2022",
|
|
"module": "ESNext",
|
|
"moduleResolution": "Bundler",
|
|
"esModuleInterop": true,
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"types": ["node"]
|
|
},
|
|
"include": ["src/main/**/*", "src/preload/**/*", "electron.vite.config.ts"]
|
|
}
|