Cleaned scripts and tsconfig

This commit is contained in:
Geomitron
2020-02-03 19:29:55 -05:00
parent 78b41f839c
commit 733333e2dc
2 changed files with 8 additions and 8 deletions

View File

@@ -2,20 +2,23 @@
"name": "bridge",
"version": "0.0.0",
"description": "A handy CloneHero library management tool with built in chart searching and downloading.",
"homepage": "https://github.com/maximegris/angular-electron",
"homepage": "https://github.com/Geomitron/Bridge",
"author": {
"name": "Geo",
"email": "geomitron@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/Geomitron/Bridge"
},
"main": "dist/electron/main.js",
"scripts": {
"start": "run-p serve:angular serve:electron",
"lint": "ng lint",
"clean": "rimraf dist release",
"build:windows": "ng build -c production && npm run build:electron && electron-builder build --windows",
"build:windows": "ng build -c production && tsc -p tsconfig.electron.json && electron-builder build --windows",
"serve:angular": "ng serve",
"serve:electron": "wait-on http-get://localhost:4200/ && npm run build:electron && electron . --dev",
"build:electron": "tsc -p tsconfig.electron.json"
"serve:electron": "wait-on http-get://localhost:4200/ && tsc -p tsconfig.electron.json && electron . --dev"
},
"private": true,
"dependencies": {

View File

@@ -17,8 +17,5 @@
"es2015",
"dom"
]
},
"include": [
"src/electron/**/*.ts"
]
}
}