nodemon with ts node not work on linux

Solutions on MaxInterview for nodemon with ts node not work on linux by the best coders in the world

showing results for - "nodemon with ts node not work on linux"
Valentín
28 Jul 2020
1	"scripts": {
2		"cleanup": "rimraf dist",
3		"build": "tsc --pretty",
4		"start": "node dist/server.js",
5		"dev": "nodemon -w 'src/**/*.ts' -x ts-node --files -H -T server.ts",
6		"format": "prettier ./src/**/*.{ts,spect.ts,test.ts} --write",
7		"lint": "eslint ./src/**/*.{ts,spect.ts,test.ts} --fix",
8		"lintfix": "npm run format && npm run lint",
9		"test": "jest",
10		"test:watch": "jest --watchAll"
11	},