Files
archived-nodemon/nodemon.json
Remy Sharp d90fee7a4c Loading .json files, parsing cli & detailed output
- Loads $HOME/nodemon.json
- Then ./nodemon.json
- Then overwrites with cli (or module) settings
- -V gives detail of what's going on inside nodemon
- -q shuts nodemon up entirely
- Cleaner config loading breakup
2013-10-29 13:41:47 +00:00

15 lines
177 B
JSON

{
"watch": [
"./",
"lib",
"src",
"plugins"
],
"ext": "js css html",
"exec": "node",
"delay": 2,
"ignore": [
"/vendor/*",
":(\\d)*\\.js"
]
}