How do people handle common configuration options in Grunt for multiple projects. The projects would share some common configuration options, e.g. for min, but also have private or custom configuration settings per project, e.g. only one out of three projects requires less or has different options for it.
Is there a way to share this common configuration between the projects, using inheritance or importing an existing file, or does each project have to define all settings?
The projects I'm referring to would reside in a directory hierarchy like
root
module1
grunt.js
module2
grunt.js
module3
grunt.js
Is there some way to provide common configuration settings at the root level?