Skip to content

Commit 3deb227

Browse files
committed
starting over again
1 parent 2f18154 commit 3deb227

4 files changed

Lines changed: 57 additions & 51 deletions

File tree

.d.js

Whitespace-only changes.

package-lock.json

Lines changed: 51 additions & 48 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "chronos",
3-
"version": "4.0.0",
3+
"version": "5.0.0",
44
"description": "Chronos Microservice Debugger",
55
"main": "./build/Main.js",
66
"scripts": {
@@ -13,8 +13,8 @@
1313
"test:electron": "jest --detectOpenHandles ./__tests__/electron/*",
1414
"test:app": "jest ./__tests__/app/*",
1515
"both": "npm run start & sleep 5 && npm run electron",
16-
"both:tsc": "nodemon --watch ./app --exec tsc & npm run start & sleep 5 && npm run electron",
17-
"both:dev": "npm run start & nodemon --watch ./electron --exec 'npm run electron'",
16+
"both:tsc": "tsc . && nodemon --watch ./app --exec tsc & npm run start & sleep 5 && npm run electron",
17+
"both:dev": "tsc . && npm run start & nodemon --watch ./electron --exec 'npm run electron'",
1818
"package-mac": "electron-packager . --overwrite --platform=darwin --arch=x64 --icon=assets/icons/mac/icon.icns --prune=true --out=release-builds",
1919
"create-installer-mac": "electron-installer-dmg ./release-builds/chronos-darwin-x64/chronos.app/ Chronos",
2020
"delete": "rm -r dist & rm -r build",

tsconfig.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
{
22
"compilerOptions": {
3+
"noImplicitAny": true,
4+
"noImplicitThis": true,
5+
"strictNullChecks": true,
36
"strict": true,
47
"pretty": true,
58
"outDir": "./build",

0 commit comments

Comments
 (0)