module.exports = {
recurseDepth: 5,
templates: {
default: {
outputSourceFiles: false,
}
},
source: {
includePattern: '.+\.js$',
exclude: ['./node_modules'],
},
opts: {
recurse: true,
template: './projects/documentation/template',
destination: './lospec-data/documentation',
//recurse: true
}
};
Every time I run it I get "There are no input files to process."
If I do source.input: ['test.js'] it works for just that file. But it wont look for .js files in my folders.
I've tried setting it to .+\\.js(doc|x)?$ which the docs say will match all .js files (and is default), but that matches nothing as well. I've tried a bunch of different things for includePattern, and they all return nothing.