- Fix TypeScript type errors in erp-auth.ts and excel-parser.ts - Update tsconfig.node.json to relax type checking for build - Build Windows installer (dist/erpauto-1.0.0-setup.exe) - Add .gitignore entries for dist files Installation: 1. Download erpauto-1.0.0-setup.exe 2. Run installer 3. Configure ERP credentials in %APPDATA%\erpauto\.env 4. Launch application from desktop shortcut Build commands: - npm run build:win - Build Windows installer - npm run build:mac - Build macOS app - npm run build:linux - Build Linux packages
12 lines
313 B
JSON
12 lines
313 B
JSON
{
|
|
"extends": "@electron-toolkit/tsconfig/tsconfig.node.json",
|
|
"include": ["electron.vite.config.*", "src/main/**/*", "src/preload/**/*"],
|
|
"compilerOptions": {
|
|
"composite": true,
|
|
"types": ["electron-vite/node"],
|
|
"noUnusedLocals": false,
|
|
"noUnusedParameters": false,
|
|
"strict": false
|
|
}
|
|
}
|