mirror of
https://github.com/SrIzan10/nodemon.git
synced 2026-05-01 10:55:09 +00:00
- 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
15 lines
177 B
JSON
15 lines
177 B
JSON
{
|
|
"watch": [
|
|
"./",
|
|
"lib",
|
|
"src",
|
|
"plugins"
|
|
],
|
|
"ext": "js css html",
|
|
"exec": "node",
|
|
"delay": 2,
|
|
"ignore": [
|
|
"/vendor/*",
|
|
":(\\d)*\\.js"
|
|
]
|
|
} |