nodemon.json 220 B

123456789
  1. {
  2. "watch": ["src", "config"],
  3. "ext": "ts,json",
  4. "ignore": ["src/**/*.spec.ts", "node_modules"],
  5. "stdin": true,
  6. "stdout": true,
  7. "signal": "SIGUSR2",
  8. "exec": "NODE_OPTIONS=${INSPECT_BRK} ts-node -i ./src/main.ts"
  9. }