I was searching for how to add to the ignore list a filename located at any subdirectory inside src
.
I had not so much lucky in my search...
I'm using a nodemon.json
file
{
"watch": ["src"],
"ext": "ts,js,json",
"ignore": [
"src/database",
"src/providers/core/jobs",
"src/config/sequelize/sequelize-cli.conf.js",
"src/**/*/tmpl.*" # this line doesn't work
]
}