My package.json:
  "scripts": {
    "dev": "cross-env NODE_ENV=development nodemon src $NODE_DEBUG_OPTION --exec babel-node",
    "build": "babel src -s -D -d dist",
    "tsc:w": "tsc -w"
  }
I have to run two commands:
npm run dev
And
npm run tsc:w
Is it possible to include the typescript watcher in the dev?