nodemon.json 276 B

12345678910111213141516171819
  1. {
  2. "ext": "js,ts,json",
  3. "watch": [
  4. ".",
  5. "../../packages/**/dist"
  6. ],
  7. "ignore": [
  8. ".next",
  9. "public/static",
  10. "package.json",
  11. "playwright",
  12. "src/client",
  13. "src/**/client",
  14. "test",
  15. "test-with-vite",
  16. "tmp",
  17. "*.mongodb.js"
  18. ]
  19. }