Skip to content

Commit

Permalink
Merge branch 'HEAD' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
BenSegal855 committed Nov 12, 2023
2 parents 4e849b2 + 1698fdb commit 2361f05
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,10 +62,11 @@
"typescript": "5.2.2"
},
"scripts": {
"build": "rimraf dist && tsc",
"build": "tsc --noEmit false",
"build:clean": "run-s clean build",
"watch": "tsc -w",
"start": "node dist/index.js",
"dev": "run-s build start",
"dev": "run-s build:clean start",
"watch:start": "tsc-watch --onSuccess \"node ./dist/index.js\"",
"lint:fix": "eslint src --ext .ts --fix",
"lint": "eslint src --ext .ts",
Expand Down
3 changes: 2 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@
"@root/*": ["./*"],
"@lib/*": ["./src/lib/*"]
},
"skipLibCheck": true
"skipLibCheck": true,
"incremental": false
},
"include": ["src"]
}
1 change: 0 additions & 1 deletion tsconfig.tsbuildinfo

This file was deleted.

0 comments on commit 2361f05

Please sign in to comment.