Fix compiler issues

This commit is contained in:
Geomitron
2023-11-27 18:49:30 -06:00
parent cddec0d9d4
commit 558d76f582
16 changed files with 580 additions and 566 deletions

View File

@@ -15,8 +15,8 @@
"main": "dist/electron/main.js",
"private": true,
"scripts": {
"start": "run-p serve:angular serve:electron",
"serve:electron": "wait-on http-get://localhost:4200/ && nodemon --exec \"tsc -p tsconfig.electron.json && electron . --dev\" --watch src/electron -e ts",
"start": "concurrently \"npm run serve:angular\" \"npm run serve:electron\" -n angular,electron -c red,yellow",
"serve:electron": "nodemon --exec \"tsc -p tsconfig.electron.json && electron . --dev\" --watch src/electron -e ts",
"lint": "ng lint",
"clean": "rimraf dist release",
"build:windows": "ng build -c production && tsc -p tsconfig.electron.json && electron-builder build --windows",
@@ -44,6 +44,7 @@
"fomantic-ui": "^2.8.3",
"jquery": "^3.5.1",
"jsonfile": "^6.0.1",
"lodash": "^4.17.21",
"mv": "^2.1.1",
"randombytes": "^2.1.0",
"rimraf": "^5.0.5",
@@ -64,6 +65,7 @@
"@angular/language-service": "^17.0.4",
"@types/cli-color": "^2.0.0",
"@types/jsonfile": "^6.0.0",
"@types/lodash": "^4.14.202",
"@types/mv": "^2.1.0",
"@types/node": "^18.16.0",
"@types/randombytes": "^2.0.0",
@@ -87,4 +89,4 @@
"tsx": "^4.4.0",
"typescript": "^5.2.2"
}
}
}