We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Here is an example (of a contrived) nodemon.json file:
nodemon.json
{ "restartable": "rs", "ignore": [ ".git", "node_modules/**/node_modules" ], "verbose": true, "execMap": { "js": "node --harmony" }, "watch": [ "test/fixtures/", "test/samples/" ], "env": { "NODE_ENV": "development" }, "ext": "js json" }
Note that the ignore used is nodemon's default ignore rule. The complete defaults can be seen here: defaults.js.
ignore