I have this simple local.JSON file I use with node-config:
{
"MySQL": {
"connection": "mysql://root:foo@localhost/heroku_d093ad5a46d841c?reconnect=true",
},
"Mongoose": {
"connection": "mongodb://localhost/myapp"
}
}
However, I get this error from nodemon:
Error: Cannot parse config file: '/Users/foo/root/repo_fave/config/local.json': SyntaxError: Unexpected token } in JSON at position 110
Particularly what does the 110 refer to. Is it the 110th character if the file was treated as a single line of string?