Is it possible to verify nodemon.json is being read correctly?

I’m trying to use a simple regular expression as follows:

{
  "verbose": false,  
  "ignore": [
    ".git",
    "bundle.*"
  ]
}

However, it appears the nodemon restarts when bundle.js is updated.

I have seen the form *.js where the filename is a catchall, but I wanted the extension to be a catch all as follows bundle.*.

I would like to use nodemon.json to configure my nodemon. I found this SO Q/A but it did not help.