amie
Version:
Amalgamation Made Insanely Easy. A tool to easily amalgamate stuff!
23 lines (21 loc) • 721 B
JavaScript
/**
* @typedef {Object} AmieOptions
*
* @property {String} [output=''] Path to the file to write.
* If evaluates to false, a string will be returned instead.
* @property {String} input Path to the file to read
* @property {Boolean} [fromString=false] Should input be considered as cpp content?
* If false, considered to be a path.
* @property {Array} [includePaths=[]] Paths to additional include directories.
* @property {Boolean} [caching=true] Should Amie cache files or not?
*/
/**
* @type {AmieOptions}
*/
module.exports = {
'output': '',
'input': '',
'fromString': false,
'includePaths': [],
'caching': true
};